Fix resolvePerson key

This commit is contained in:
mei23 2018-08-25 22:25:40 +09:00
parent 05daa7ac7d
commit a09a244242
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}