mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 04:58:01 +01:00
Attempt to fix page load issues on staging server
This commit is contained in:
parent
0c1a283867
commit
64d28f0b1f
1 changed files with 13 additions and 9 deletions
|
@ -56,6 +56,9 @@ self.addEventListener('activate', function (event) {
|
|||
// Basic offline mode
|
||||
// Just respond with an offline error page for now
|
||||
self.addEventListener('fetch', function(event) {
|
||||
if (event.request.url.indexOf('stage.pony.fm') > -1) {
|
||||
event.respondWith(fetch(event.request));
|
||||
} else {
|
||||
event.respondWith(
|
||||
caches.match(event.request).then(function (response) {
|
||||
return response || fetch(event.request);
|
||||
|
@ -65,6 +68,7 @@ self.addEventListener('fetch', function(event) {
|
|||
}
|
||||
})
|
||||
)
|
||||
}
|
||||
});
|
||||
|
||||
self.addEventListener('push', function(event) {
|
||||
|
|
Loading…
Reference in a new issue