aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--web/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/index.html b/web/index.html
index 051cc94..b50d3cb 100644
--- a/web/index.html
+++ b/web/index.html
@@ -42,12 +42,12 @@ const precachedResources = [
];
async function precache() {
- const cache = await caches.open('upub-assets-cache');
- return cache.addAll(precachedResources);
+ const cache = await caches.open('upub-assets-cache');
+ return cache.addAll(precachedResources);
}
self.addEventListener("install", (event) => {
- event.waitUntil(precache());
+ event.waitUntil(precache());
});
</script>
</html>