1
0
mirror of https://github.com/SuperBFG7/ympd synced 2024-06-26 06:33:15 +00:00

Fix: don't use serviceworker for http:// uris -> fixes http stream in local player

This commit is contained in:
jcorporation 2018-09-20 23:43:58 +01:00
parent 05b93894e8
commit 006eb6d28c

View File

@ -28,15 +28,16 @@ self.addEventListener('install', function(event) {
});
self.addEventListener('fetch', function(event) {
event.respondWith(
caches.match(event.request).then(function(response) {
if (response)
return response
else
return fetch(event.request);
}
)
);
if (event.request.url.match('^http://'))
return false;
event.respondWith(
caches.match(event.request).then(function(response) {
if (response)
return response
else
return fetch(event.request);
})
);
});
self.addEventListener('activate', function(event) {