diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-04-05 01:25:53 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-05 01:25:53 +0900 |
| commit | 021595c4ae7aa4cbcf2c2609320bd9935106bf9e (patch) | |
| tree | df4542a6ea5a2b985d4c0ffe6d310c99f8a3c801 /src/queue/processors/http | |
| parent | Merge pull request #1396 from akihikodaki/duplicate (diff) | |
| parent | Implement Mention object (diff) | |
| download | sharkey-021595c4ae7aa4cbcf2c2609320bd9935106bf9e.tar.gz sharkey-021595c4ae7aa4cbcf2c2609320bd9935106bf9e.tar.bz2 sharkey-021595c4ae7aa4cbcf2c2609320bd9935106bf9e.zip | |
Merge pull request #1398 from akihikodaki/duplicate
Implement Mention object
Diffstat (limited to 'src/queue/processors/http')
| -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); } } |