From 79c4d7154c4ea6a2647a87f7ec148e538c824d6c Mon Sep 17 00:00:00 2001 From: TLRZ Seyfferth Date: Wed, 24 Jan 2018 18:03:23 +0100 Subject: [PATCH] typo --- serviceWorker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serviceWorker.js b/serviceWorker.js index 7299600..645dad5 100644 --- a/serviceWorker.js +++ b/serviceWorker.js @@ -34,7 +34,7 @@ self.addEventListener('install', function(event){ return caches.open(myCache.name) .then(function (cache){ console.log("[Cache] opened: ", myCache.name); - return caches.addAll(myCache.urls); + return cache.addAll(myCache.urls); }); }) ))