mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 04:58:01 +01:00
Ignore MP3 requests
This commit is contained in:
parent
a2f00f8134
commit
b2dba38268
1 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ self.addEventListener('activate', function (event) {
|
||||||
// Basic offline mode
|
// Basic offline mode
|
||||||
// Just respond with an offline error page for now
|
// Just respond with an offline error page for now
|
||||||
self.addEventListener('fetch', function(event) {
|
self.addEventListener('fetch', function(event) {
|
||||||
if (event.request.url.indexOf('stage.pony.fm') > -1 || event.request.url.indexOf('upload') > -1) {
|
if (event.request.url.indexOf('stage.pony.fm') > -1 || event.request.url.indexOf('upload' || event.request.url.indexOf('mp3') > -1) > -1) {
|
||||||
// Ignore some requests
|
// Ignore some requests
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
|
@ -110,4 +110,4 @@ self.addEventListener('notificationclick', function(event) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue