diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-08-26 01:19:07 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-26 01:19:07 +0900 |
| commit | 1962bfb4a58d065285adbf03d51f9c8981b85855 (patch) | |
| tree | 1d9a04e1208180783a63e99a8027e6a4870498ad /src/queue | |
| parent | Merge pull request #2488 from syuilo/refactor-string (diff) | |
| parent | Fix resolvePerson key (diff) | |
| download | sharkey-1962bfb4a58d065285adbf03d51f9c8981b85855.tar.gz sharkey-1962bfb4a58d065285adbf03d51f9c8981b85855.tar.bz2 sharkey-1962bfb4a58d065285adbf03d51f9c8981b85855.zip | |
Merge pull request #2489 from mei23/mei-0825-apresolvekey
リモートユーザー解決時のURIがまちがっているのを修正
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 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; } } |