diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 22:18:26 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 22:18:26 +0900 |
| commit | 169f3ed541501bd6f673863b971d9915db39468f (patch) | |
| tree | dd79c7ff87bda8160725c1b625ff35f65ad1cd7a /src | |
| parent | Resolve #5860 (diff) | |
| parent | PWAとしてインストールできなかったのを修正 (#5863) (diff) | |
| download | misskey-169f3ed541501bd6f673863b971d9915db39468f.tar.gz misskey-169f3ed541501bd6f673863b971d9915db39468f.tar.bz2 misskey-169f3ed541501bd6f673863b971d9915db39468f.zip | |
Merge branch 'develop' of https://github.com/syuilo/misskey into develop
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/sw.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/sw.js b/src/client/sw.js index a84647b656..0ad9e22f12 100644 --- a/src/client/sw.js +++ b/src/client/sw.js @@ -18,7 +18,7 @@ self.addEventListener('install', ev => { caches.open(cacheName) .then(cache => { return cache.addAll([ - '/assets/error.jpg' + '/' ]); }) .then(() => self.skipWaiting()) |