summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2019-06-21 11:50:38 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2019-06-21 11:50:38 +0900
commit2b8d0225cc43971fc7b9dc27447725233a73208c (patch)
tree5f7bee7c957f12bdd0a04327c2e16e3295bac379 /src
parentホームのカスタマイズ情報を複数のデバイス間で同期で... (diff)
downloadsharkey-2b8d0225cc43971fc7b9dc27447725233a73208c.tar.gz
sharkey-2b8d0225cc43971fc7b9dc27447725233a73208c.tar.bz2
sharkey-2b8d0225cc43971fc7b9dc27447725233a73208c.zip
Enable ServiceWorker (#5075)
Diffstat (limited to 'src')
-rw-r--r--src/client/app/mios.ts7
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);
+ });
}
};