spec(ActivityPub): 個別ユーザーのinboxに届いた限定公開のPostはそのユーザーに閲覧権限があると見なす (MisskeyIO#361)

This commit is contained in:
まっちゃとーにゅ 2024-01-16 07:36:34 +09:00 committed by GitHub
parent fd0966bc8c
commit 83bf53c600
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 112 additions and 24 deletions

View file

@ -180,7 +180,7 @@ export class InboxProcessorService {
});
// アクティビティを処理
await this.apInboxService.performActivity(authUser.user, activity);
await this.apInboxService.performActivity(authUser.user, activity, job.data.user?.id);
return 'ok';
}
}