mirror of
https://github.com/SuperBFG7/ympd
synced 2024-12-25 02:20:27 +00:00
Fix: don't use serviceworker for http:// uris -> fixes http stream in local player
This commit is contained in:
parent
05b93894e8
commit
006eb6d28c
19
htdocs/sw.js
19
htdocs/sw.js
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user