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
Currently we trigger updates for events fired at the SW. In particular, navigates always trigger updates.
Now that we allow the browser to avoid firing fetch events if there is no fetch handler, should the update still be triggered?
Per the spec, I think the answer is no. I think for dev UX, though, we should still trigger updates. It would be nice to be consistent across browsers here.
The text was updated successfully, but these errors were encountered:
This changes Handle Fetch and Handle Functional Event to invoke Soft
Update even if the service worker doesn't have any event listener
registered for the event. (Note that the cases where the request falls
back to network still do not trigger Soft Update.)
Fixes#905.
Currently we trigger updates for events fired at the SW. In particular, navigates always trigger updates.
Now that we allow the browser to avoid firing fetch events if there is no fetch handler, should the update still be triggered?
Per the spec, I think the answer is no. I think for dev UX, though, we should still trigger updates. It would be nice to be consistent across browsers here.
The text was updated successfully, but these errors were encountered: