-
Notifications
You must be signed in to change notification settings - Fork 918
New issue
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
Safari: 'Error thrown when reading from IndexedDB' #8860
Comments
I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight. |
Since the warning is from Context: There's a very similar issue that was reported in #6871. We were not able to reproduce the issue, but it was believed that the error was caused by a bug WebKit's IndexedDB. To prevent these errors from affecting users' apps, we wrapped these IDB calls in a try/catch in #7272. |
Is this in Safari private browsing, or an iFrame, or a PWA, or a webview, or any other additional environment details other than a standard Safari desktop browser? We'd like to catch it but we have to figure out how to reproduce it first. Also can you confirm the bug does not happen in non-Safari browsers? Or that you don't see it there? |
@hsubox76 it was in a non-private Safari window. My website is pure Javascript/TypeScript, has the same architecture as the create react app, has no iFrames, is only meant to be accessed from a browser, and has no offline support. The error state often gets triggered during development, after I make a javascript change to one file without refreshing the page. I'm using npm. It gets in this state usually once a day after developing for several hours. When the error state occurs, the only way to make it go away is to quit Safari, launch Safari again, and go to my local dev url (http://localhost:3000). If I see the error state and I close the window, and subsequently re-visit the URL (without quitting Safari), I will experience the same error state again. Chrome is the only non-Safari desktop browser that I've used. I develop using Chrome (134.0.6998.118) a very limited amount, and I have not experienced the issue on Chrome. I would be happy to use any dev build with trace logging if that could help uncover the issue. |
Does this happen outside of development? I assume during development you're using webpack hot reloading? |
It hasn't happened outside of development, and yes during development I'm using webpack hot reloading. |
Operating System
macOS 15.3.2
Environment (if applicable)
Safari 18.3.1
Firebase SDK Version
11.5.0
Firebase SDK Product(s)
Auth
Project Tooling
React app
Detailed Problem Description
The Firebase SDK gets into an error state often where it logs:
Firebase: Error thrown when reading from IndexedDB. Original error: Error looking up record in object store by key range. (app/idb-get)
multiple times in the console.
This is always followed by several unhandled abort errors.
This issue can occur on initial page load. On page load, I call into Firebase auth before performing another network request.
Steps and code to reproduce issue
I have one firebaseConfig.tsx file:
A class called NetworkUtils.tsx that waits on firebase auth when making a network request:
The same file has a function to auth the user
The text was updated successfully, but these errors were encountered: