summaryrefslogtreecommitdiffstats
path: root/js/logout.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/logout.js')
-rw-r--r--js/logout.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/logout.js b/js/logout.js
index b4b36be..f9c2543 100644
--- a/js/logout.js
+++ b/js/logout.js
@@ -1,4 +1,5 @@
-navigator.serviceWorker.controller.postMessage(JSON.stringify({action: "deletecaches"})); // deletes cache
+// navigator.serviceWorker.controller.postMessage(JSON.stringify({action: "deletecaches"})); // cache only sets on initialization, so it should not be deleted.
+// since sw.js is not cached, updates work.
localforage.clear().then(() => { // deletes localforage
window.location.replace("/index.html");
});