From 1d2d46e7991f79562ae051a68669881cc9b4237f Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 8 Dec 2017 14:59:43 +0900 Subject: RE: Fix #952 --- src/web/app/common/scripts/check-for-update.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/web/app/common/scripts') diff --git a/src/web/app/common/scripts/check-for-update.ts b/src/web/app/common/scripts/check-for-update.ts index 1540924510..0b58c0a674 100644 --- a/src/web/app/common/scripts/check-for-update.ts +++ b/src/web/app/common/scripts/check-for-update.ts @@ -11,6 +11,10 @@ export default async function(mios: MiOS) { // Clear cache (serive worker) try { navigator.serviceWorker.controller.postMessage('clear'); + + navigator.serviceWorker.getRegistrations().then(registrations => { + registrations.forEach(registration => registration.unregister()); + }); } catch (e) { console.error(e); } -- cgit v1.2.3-freya