diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-06-21 13:06:55 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-06-21 13:06:55 +0900 |
| commit | 26f4c038f397d1cda7d51ce80ee0fa893b2ca423 (patch) | |
| tree | 2b7bdc5c4cfa60e109eca08a089b906e5e2ef824 | |
| parent | デッキの状態を同期できるように (diff) | |
| parent | Enable ServiceWorker (#5075) (diff) | |
| download | sharkey-26f4c038f397d1cda7d51ce80ee0fa893b2ca423.tar.gz sharkey-26f4c038f397d1cda7d51ce80ee0fa893b2ca423.tar.bz2 sharkey-26f4c038f397d1cda7d51ce80ee0fa893b2ca423.zip | |
Merge branch 'develop' of https://github.com/syuilo/misskey into develop
| -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); + }); } }; |