mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
Fix #5918
This commit is contained in:
parent
2c23e56ae7
commit
230024ba14
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