- From: Ben Kelly <notifications@github.com>
- Date: Tue, 16 May 2017 07:21:11 -0700
- To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 16 May 2017 14:22:01 UTC
@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