1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-01 06:55:47 +02:00

Enable service worker

This commit is contained in:
syuilo
2019-02-05 14:22:52 +09:00
parent 43cb12930a
commit dff1122bd5
2 changed files with 5 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
import composeNotification from './common/scripts/compose-notification';
import { erase } from '../../prelude/array';
import { clientVersion } from './config';
// キャッシュするリソース
const cachee = [
@@ -16,7 +17,7 @@ self.addEventListener('install', ev => {
ev.waitUntil(Promise.all([
self.skipWaiting(), // Force activate
caches.open(_VERSION_).then(cache => cache.addAll(cachee)) // Cache
caches.open(clientVersion).then(cache => cache.addAll(cachee)) // Cache
]));
});
@@ -25,7 +26,7 @@ self.addEventListener('activate', ev => {
// Clean up old caches
ev.waitUntil(
caches.keys().then(keys => Promise.all(
erase(_VERSION_, keys)
erase(clientVersion, keys)
.map(key => caches.delete(key))
))
);