You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No IndexedDB available usually means Firefox private mode. Tab IDs are present in local storage but data needs to be fetched from backend.
Error: "Error: Tab data missing. Are you offline? Try refreshing." or, if on tabs view, tab names might load one by one.
This happens due to possible timeout cancelling the initial replication leaving the tab data in incomplete state (no info doc, yet) until syncing ran successfully. initialLoadingDone is true prematurely then.
The initial timeout is useful if data is present locally, so we show the old data and fetch in the background to not make the user wait for too long if network is slow. But if there's no data at all locally, it doesn't make sense. Should we distinguish between no data present and some?
The text was updated successfully, but these errors were encountered:
xMartin
changed the title
Reloading app with no IndexedDB available shows error temporily
Reloading app with no IndexedDB available might show error temporily due to timeout
Oct 10, 2022
No IndexedDB available usually means Firefox private mode. Tab IDs are present in local storage but data needs to be fetched from backend.
Error: "Error: Tab data missing. Are you offline? Try refreshing." or, if on tabs view, tab names might load one by one.
This happens due to possible timeout cancelling the initial replication leaving the tab data in incomplete state (no info doc, yet) until syncing ran successfully.
initialLoadingDone
istrue
prematurely then.The initial timeout is useful if data is present locally, so we show the old data and fetch in the background to not make the user wait for too long if network is slow. But if there's no data at all locally, it doesn't make sense. Should we distinguish between no data present and some?
The text was updated successfully, but these errors were encountered: