diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-12 01:01:17 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-12 01:01:17 +0900 |
| commit | d70f7a717b660bc045c00c19fd8046b71501146d (patch) | |
| tree | 50ebede4a053426c96612110966615f220a46b13 /src/misc | |
| parent | タイムラインを放置すると先頭の投稿が見えなくなるの... (diff) | |
| download | sharkey-d70f7a717b660bc045c00c19fd8046b71501146d.tar.gz sharkey-d70f7a717b660bc045c00c19fd8046b71501146d.tar.bz2 sharkey-d70f7a717b660bc045c00c19fd8046b71501146d.zip | |
Fix #5918
Diffstat (limited to 'src/misc')
| -rw-r--r-- | src/misc/fetch-proxy-account.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/misc/fetch-proxy-account.ts b/src/misc/fetch-proxy-account.ts index a042c116a6..0094ab8a56 100644 --- a/src/misc/fetch-proxy-account.ts +++ b/src/misc/fetch-proxy-account.ts @@ -1,9 +1,10 @@ import { fetchMeta } from './fetch-meta'; import { ILocalUser } from '../models/entities/user'; import { Users } from '../models'; +import { ensure } from '../prelude/ensure'; export async function fetchProxyAccount(): Promise<ILocalUser | null> { - if (meta.proxyAccountId == null) return null; const meta = await fetchMeta(); - return await Users.findOne(meta.proxyAccountId); + if (meta.proxyAccountId == null) return null; + return await Users.findOne(meta.proxyAccountId).then(ensure) as ILocalUser; } |