diff --git a/packages/backend/src/core/NoteCreateService.ts b/packages/backend/src/core/NoteCreateService.ts index ddd3d91ad9..bfd81b9f61 100644 --- a/packages/backend/src/core/NoteCreateService.ts +++ b/packages/backend/src/core/NoteCreateService.ts @@ -748,11 +748,6 @@ export class NoteCreateService implements OnApplicationShutdown { // ストリームに流す const noteObj = await this.noteEntityService.pack(note, null, { skipHide: true, withReactionAndUserPairCache: true }); this.globalEventService.publishNotesStream(noteObj); - - // 通知を作成 - const nm = new NotificationManager(this.mutingsRepository, this.notificationService, user, note); - await this.createMentionedEvents([additionalUser], note, nm); - nm.notify(); } @bindThis