diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-02 23:27:47 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-02 23:27:47 +0900 |
| commit | d62a6bab4183afe78070c14fcaace8f847e5ea9e (patch) | |
| tree | 62a30d0f2c3647686b2c84018f20ea3444e18596 /src/client | |
| parent | :pizza: (diff) | |
| download | misskey-d62a6bab4183afe78070c14fcaace8f847e5ea9e.tar.gz misskey-d62a6bab4183afe78070c14fcaace8f847e5ea9e.tar.bz2 misskey-d62a6bab4183afe78070c14fcaace8f847e5ea9e.zip | |
Remove needless properties
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/mios.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/app/mios.ts b/src/client/app/mios.ts index 9c351e9041..4350b41806 100644 --- a/src/client/app/mios.ts +++ b/src/client/app/mios.ts @@ -537,7 +537,9 @@ export default class MiOS extends EventEmitter { // forceが有効, meta情報を保持していない or 期限切れ if (force || this.meta == null || Date.now() - this.meta.chachedAt.getTime() > expire) { this.isMetaFetching = true; - const meta = await this.api('meta'); + const meta = await this.api('meta', { + detail: false + }); this.meta = { data: meta, chachedAt: new Date() |