forked from FoundKeyGang/FoundKey
Fix #5918
This commit is contained in:
parent
4ab38b7894
commit
d70f7a717b
1 changed files with 3 additions and 2 deletions
|
@ -1,9 +1,10 @@
|
||||||
import { fetchMeta } from './fetch-meta';
|
import { fetchMeta } from './fetch-meta';
|
||||||
import { ILocalUser } from '../models/entities/user';
|
import { ILocalUser } from '../models/entities/user';
|
||||||
import { Users } from '../models';
|
import { Users } from '../models';
|
||||||
|
import { ensure } from '../prelude/ensure';
|
||||||
|
|
||||||
export async function fetchProxyAccount(): Promise<ILocalUser | null> {
|
export async function fetchProxyAccount(): Promise<ILocalUser | null> {
|
||||||
if (meta.proxyAccountId == null) return null;
|
|
||||||
const meta = await fetchMeta();
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue