This commit is contained in:
syuilo 2017-11-28 15:43:17 +09:00
parent 305a620aed
commit 8ed4e5422b
1 changed files with 8 additions and 0 deletions

View File

@ -7,6 +7,14 @@ export default async function(mios: MiOS) {
if (meta.version != _VERSION_) {
localStorage.setItem('should-refresh', 'true');
// Clear cache (serive worker)
try {
navigator.serviceWorker.controller.postMessage('clear');
} catch (e) {
console.error(e);
}
alert('%i18n:common.update-available%'.replace('{newer}', meta.version).replace('{current}', _VERSION_));
}
}