1
0
mirror of https://github.com/SuperBFG7/ympd synced 2025-11-15 20:57:16 +00:00

fix: cache initialisation

This commit is contained in:
jcorporation
2018-07-29 23:20:22 +01:00
parent ba83c36c1c
commit 8a6131fefa
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ var urlsToCache = [
self.addEventListener('install', function(event) {
event.waitUntil(
caches.open(CACHE_NAME).then(function(cache) {
caches.open(CACHE).then(function(cache) {
return cache.addAll(urlsToCache);
})
);