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
{{ message }}
This repository was archived by the owner on Jul 19, 2023. It is now read-only.
I'm not going to do a great job of summarizing this issue, but here we go.
There are situations where the service worker tries to fetch a new version of a resource, but it isn't able to. In this situation it just stops trying to fetch the new version, even if the browser user does a hard refresh. This leads to old content being displayed even though HTTP requests are apparently going out and coming back with 200 response codes.
A simple solution is to stop using service workers and fall back to application cache. This will eventually stop working, but it should be okay in the short term.
A proper solution depends on figuring out when the service worker gives up on its background request.
I'm not going to do a great job of summarizing this issue, but here we go.
There are situations where the service worker tries to fetch a new version of a resource, but it isn't able to. In this situation it just stops trying to fetch the new version, even if the browser user does a hard refresh. This leads to old content being displayed even though HTTP requests are apparently going out and coming back with 200 response codes.
A simple solution is to stop using service workers and fall back to application cache. This will eventually stop working, but it should be okay in the short term.
A proper solution depends on figuring out when the service worker gives up on its background request.