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
(At least) on IE11 or local development, we don't have a service worker. Currently, we route the request to close the session id we are about to open in other tabs through it, so this doesn't work without a service worker.
We should provide a fallback, as concurrent access will likely corrupt your database:
use a broadcastchannel if available (we can't always use this in favor of a service worker as safari does not support broadcast channels)
poll a sessionstorage key as last resort (at 10Hz or something?), there is also a storage event but unclear how well that is supported in IE11.
we should not expose the serviceworkerhandler to the storage factory, but rather an abstraction that can fit the above fallbacks as well.
The text was updated successfully, but these errors were encountered:
(At least) on IE11 or local development, we don't have a service worker. Currently, we route the request to close the session id we are about to open in other tabs through it, so this doesn't work without a service worker.
We should provide a fallback, as concurrent access will likely corrupt your database:
storage
event but unclear how well that is supported in IE11.we should not expose the serviceworkerhandler to the storage factory, but rather an abstraction that can fit the above fallbacks as well.
The text was updated successfully, but these errors were encountered: