beverloo/peter.sh

BackgroundFetchSettledEvent JS error

rayankans opened this issue · 0 comments

In the new version of the spec, getting the fetches from the event returns a Promise.

event.fetches.forEach(...)

should become something like

(await event.fetches.values()).forEach(...);