diff options
| author | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-05 01:24:39 +0900 |
|---|---|---|
| committer | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-05 01:24:39 +0900 |
| commit | 168b0730b46fd283b900b553dd2eede2aa4c7dac (patch) | |
| tree | c60094d36238cae8ee69a215c01ea4c4dcb3976d /src/queue | |
| parent | Do not declare two variables in a statement (diff) | |
| download | sharkey-168b0730b46fd283b900b553dd2eede2aa4c7dac.tar.gz sharkey-168b0730b46fd283b900b553dd2eede2aa4c7dac.tar.bz2 sharkey-168b0730b46fd283b900b553dd2eede2aa4c7dac.zip | |
Implement Mention object
Diffstat (limited to 'src/queue')
| -rw-r--r-- | src/queue/processors/http/process-inbox.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/queue/processors/http/process-inbox.ts b/src/queue/processors/http/process-inbox.ts index 88fbb97377..7eeaa19f8a 100644 --- a/src/queue/processors/http/process-inbox.ts +++ b/src/queue/processors/http/process-inbox.ts @@ -25,7 +25,7 @@ export default async ({ data }, done) => { }) as IRemoteUser; if (user === null) { - user = await resolvePerson(data.signature.keyId); + user = await resolvePerson(new Resolver(), data.signature.keyId); } } |