diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-06-21 11:50:38 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-06-21 11:50:38 +0900 |
| commit | 2b8d0225cc43971fc7b9dc27447725233a73208c (patch) | |
| tree | 5f7bee7c957f12bdd0a04327c2e16e3295bac379 /src | |
| parent | ホームのカスタマイズ情報を複数のデバイス間で同期で... (diff) | |
| download | sharkey-2b8d0225cc43971fc7b9dc27447725233a73208c.tar.gz sharkey-2b8d0225cc43971fc7b9dc27447725233a73208c.tar.bz2 sharkey-2b8d0225cc43971fc7b9dc27447725233a73208c.zip | |
Enable ServiceWorker (#5075)
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mios.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/client/app/mios.ts b/src/client/app/mios.ts index ae1446b934..a73ef45c38 100644 --- a/src/client/app/mios.ts +++ b/src/client/app/mios.ts @@ -173,10 +173,9 @@ export default class MiOS extends EventEmitter { // Init service worker if (this.shouldRegisterSw) { - // #4813 - //this.getMeta().then(data => { - // this.registerSw(data.swPublickey); - //}); + this.getMeta().then(data => { + this.registerSw(data.swPublickey); + }); } }; |