Fix resync-remote-user (#7556)

* Fix resync-remote-user

* tune
This commit is contained in:
MeiMei 2021-06-05 14:55:41 +09:00 committed by GitHub
parent b2dfd27588
commit dd75f517c2

View file

@ -1,7 +1,10 @@
import { initDb } from '@/db/postgre';
import parseAcct from '@/misc/acct/parse';
import { resolveUser } from '../remote/resolve-user';
async function main(acct: string): Promise<any> {
await initDb();
const { resolveUser } = await import('../remote/resolve-user');
const { username, host } = parseAcct(acct);
await resolveUser(username, host, {}, true);
}