summaryrefslogtreecommitdiff
path: root/src/tools/resync-remote-user.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/resync-remote-user.ts')
-rw-r--r--src/tools/resync-remote-user.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/resync-remote-user.ts b/src/tools/resync-remote-user.ts
index ad2e231eb5..3c02fb94c7 100644
--- a/src/tools/resync-remote-user.ts
+++ b/src/tools/resync-remote-user.ts
@@ -1,9 +1,9 @@
-import { initDb } from '@/db/postgre';
-import { parseAcct } from '@/misc/acct';
+import { initDb } from '@/db/postgre.js';
+import { parseAcct } from '@/misc/acct.js';
async function main(acct: string): Promise<any> {
await initDb();
- const { resolveUser } = await import('../remote/resolve-user');
+ const { resolveUser } = await import('@/remote/resolve-user');
const { username, host } = parseAcct(acct);
await resolveUser(username, host, {}, true);