diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-26 02:33:29 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-26 02:33:29 +0900 |
| commit | 9c32118b77f74953a66b219b0bd9a2b38e3468e8 (patch) | |
| tree | 3d6743b2d156d0843efe4130bae351df16d3e157 /src/queue/processors/http | |
| parent | Merge pull request #2482 from syuilo/develop (diff) | |
| parent | 8.14.0 (diff) | |
| download | sharkey-9c32118b77f74953a66b219b0bd9a2b38e3468e8.tar.gz sharkey-9c32118b77f74953a66b219b0bd9a2b38e3468e8.tar.bz2 sharkey-9c32118b77f74953a66b219b0bd9a2b38e3468e8.zip | |
Merge branch 'develop'
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 0738853dd1..c9c2fa72cb 100644 --- a/src/queue/processors/http/process-inbox.ts +++ b/src/queue/processors/http/process-inbox.ts @@ -46,7 +46,7 @@ export default async (job: bq.Job, done: any): Promise<void> => { // アクティビティを送信してきたユーザーがまだMisskeyサーバーに登録されていなかったら登録する if (user === null) { - user = await resolvePerson(signature.keyId) as IRemoteUser; + user = await resolvePerson(activity.actor) as IRemoteUser; } } |