We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Commit a85f81d introduces a call to crypto, which is undefined on IE11, thus throwing an exception.
crypto
The fix is to use msCrypto if crypto is undefined, as seen here.
msCrypto
const crypto = self.crypto || ((self as unknown) as { msCrypto: Crypto }).msCrypto;
firebase.firestore()
https://stackblitz.com/edit/firebase-issue-sandbox-wvfegd A simple call like this will fail (any client configuration will)
firebase .firestore() .enablePersistence();
The text was updated successfully, but these errors were encountered:
@caspergreen Thanks for reporting a bug! This issue is currently being tracked at #2827, so I'll close this ticket.
Sorry, something went wrong.
No branches or pull requests
[REQUIRED] Describe your environment
[REQUIRED] Describe the problem
Commit a85f81d introduces a call to
crypto
, which is undefined on IE11, thus throwing an exception.The fix is to use
msCrypto
if crypto is undefined, as seen here.Steps to reproduce:
firebase.firestore()
.Relevant Code:
https://stackblitz.com/edit/firebase-issue-sandbox-wvfegd
A simple call like this will fail (any client configuration will)
The text was updated successfully, but these errors were encountered: