From 711ab04789b3c3380ba1dd09a32774c17e93de4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Sun, 9 Feb 2020 15:25:36 +0100 Subject: fixed missing cache in case of a logout --- js/logout.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'js/logout.js') 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"); }); -- cgit v1.2.3