spec(ActivityPub): 個別ユーザーのinboxに届いた限定公開のPostはそのユーザーに閲覧権限があると見なす (MisskeyIO#361)
This commit is contained in:
@@ -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';
|
||||
}
|
||||
}
|
||||
|
@@ -26,6 +26,7 @@ export type DeliverJobData = {
|
||||
};
|
||||
|
||||
export type InboxJobData = {
|
||||
user?: ThinUser;
|
||||
activity: IActivity;
|
||||
signature: httpSignature.IParsedSignature;
|
||||
};
|
||||
|
Reference in New Issue
Block a user