From 6fa77ef575ffdbec8f0362dfbaea8c955ccf9504 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=BE=E3=81=A3=E3=81=A1=E3=82=83=E3=81=A8=E3=83=BC?= =?UTF-8?q?=E3=81=AB=E3=82=85?= <17376330+u1-liquid@users.noreply.github.com> Date: Tue, 16 Jan 2024 21:50:36 +0900 Subject: [PATCH] =?UTF-8?q?spec(ActivityPub):=20=E3=83=A1=E3=83=B3?= =?UTF-8?q?=E3=82=B7=E3=83=A7=E3=83=B3=E3=81=95=E3=82=8C=E3=81=A6=E3=81=84?= =?UTF-8?q?=E3=81=AA=E3=81=84=E5=A0=B4=E5=90=88=E3=81=AF=E5=80=8B=E5=88=A5?= =?UTF-8?q?=E3=83=A6=E3=83=BC=E3=82=B6=E3=83=BC=E3=81=AEinbox=E3=81=AB?= =?UTF-8?q?=E5=B1=8A=E3=81=84=E3=81=9F=E9=99=90=E5=AE=9A=E5=85=AC=E9=96=8B?= =?UTF-8?q?=E3=81=AEPost=E3=81=AF=E9=80=9A=E7=9F=A5=E3=82=92=E4=BD=9C?= =?UTF-8?q?=E6=88=90=E3=81=97=E3=81=AA=E3=81=84=E3=82=88=E3=81=86=E3=81=AB?= =?UTF-8?q?=20(MisskeyIO#365)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/backend/src/core/NoteCreateService.ts | 5 ----- 1 file changed, 5 deletions(-) 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