diff --git a/packages/backend/src/core/NoteCreateService.ts b/packages/backend/src/core/NoteCreateService.ts index b5335fc5bbb2..d0a8eb793962 100644 --- a/packages/backend/src/core/NoteCreateService.ts +++ b/packages/backend/src/core/NoteCreateService.ts @@ -363,7 +363,8 @@ export class NoteCreateService implements OnApplicationShutdown { // ローカル宛てのメンション、リプライ、引用ノートの発行元が、ローカルユーザーにフォローされていない場合は投稿を拒否する const willCauseNotification = mentionedUsers.filter(u => u.host === null).length > 0 || (data.reply != null && data.reply.userHost === null) || - (this.isQuote(data) && data.renote.userHost === null); + (this.isQuote(data) && data.renote.userHost === null) || + (data.visibility === 'specified' && data.visibleUsers != null && data.visibleUsers.some(u => u.host === null)); if (user.host != null && willCauseNotification) { const userEntity = await this.usersRepository.findOneBy({ id: user.id });