We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7505243 commit 8524375Copy full SHA for 8524375
packages/firestore/src/local/simple_db.ts
@@ -326,10 +326,11 @@ export class SimpleDb {
326
reject(
327
new FirestoreError(
328
Code.FAILED_PRECONDITION,
329
- 'Unable to open an IndexedDb connection; this may be due to running in a ' +
330
- 'Firefox private browsing session, in which IndexedDb is not supported ' +
331
- '(https://goo.gle/3ymSNyf): ' +
332
- error
+ 'Unable to open an IndexedDb connection. This could be due to running in a ' +
+ 'private browsing session on a browser whose private browsing sessions do not ' +
+ 'support IndexedDb. (' +
+ error +
333
+ ')'
334
)
335
);
336
} else {
0 commit comments