summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-06-21 13:06:55 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-06-21 13:06:55 +0900
commit26f4c038f397d1cda7d51ce80ee0fa893b2ca423 (patch)
tree2b7bdc5c4cfa60e109eca08a089b906e5e2ef824 /src/client
parentデッキの状態を同期できるように (diff)
parentEnable ServiceWorker (#5075) (diff)
downloadsharkey-26f4c038f397d1cda7d51ce80ee0fa893b2ca423.tar.gz
sharkey-26f4c038f397d1cda7d51ce80ee0fa893b2ca423.tar.bz2
sharkey-26f4c038f397d1cda7d51ce80ee0fa893b2ca423.zip
Merge branch 'develop' of https://github.com/syuilo/misskey into develop
Diffstat (limited to 'src/client')
-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);
+ });
}
};