Re: [w3c/ServiceWorker] Service Worker makes AJAX Progress Listener not Working (#1141)

@albertsylvester Since Cache API never stores "POST" requests, you could put this at the top of your fetch event handler to avoid the respondWith():

```
if (event.request.method === 'POST') {
  return;
}
```

I'm not sure we can make the pass-through `fetch(event.request)` work for progress until we fix progress in the Fetch API spec.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/issues/1141#issuecomment-301797690

Received on Tuesday, 16 May 2017 14:22:01 UTC