summaryrefslogtreecommitdiff
path: root/src/remote
diff options
context:
space:
mode:
Diffstat (limited to 'src/remote')
-rw-r--r--src/remote/resolve-user.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/remote/resolve-user.ts b/src/remote/resolve-user.ts
index edb4c78607..9e1ae51952 100644
--- a/src/remote/resolve-user.ts
+++ b/src/remote/resolve-user.ts
@@ -1,7 +1,6 @@
import { toUnicode, toASCII } from 'punycode';
import User from '../models/user';
import resolvePerson from './activitypub/resolve-person';
-import Resolver from './activitypub/resolver';
import webFinger from './webfinger';
export default async (username, host, option) => {
@@ -20,7 +19,7 @@ export default async (username, host, option) => {
throw new Error('self link not found');
}
- user = await resolvePerson(new Resolver(), self.href, acctLower);
+ user = await resolvePerson(self.href, acctLower);
}
return user;