Clone response before using when caching web page (#7498)
parent
7fe2993b87
commit
3705cd8322
|
@ -30,8 +30,8 @@ self.addEventListener('fetch', function(event) {
|
||||||
|
|
||||||
event.respondWith(asyncResponse.then(response => {
|
event.respondWith(asyncResponse.then(response => {
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
return asyncCache.then(cache => cache.put('/', response))
|
return asyncCache.then(cache => cache.put('/', response.clone()))
|
||||||
.then(() => response.clone());
|
.then(() => response);
|
||||||
}
|
}
|
||||||
|
|
||||||
throw null;
|
throw null;
|
||||||
|
|
Loading…
Reference in New Issue