From 27a9a8f4ce1cb5cf5f0d4653b681a9100d5f1e10 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: Wed, 17 Jan 2024 21:36:52 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20MisskeyIO#365=20=E3=81=AB=E3=82=82?= =?UTF-8?q?=E3=81=8B=E3=81=8B=E3=82=8F=E3=82=89=E3=81=9A=E3=81=BE=E3=81=A0?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=E3=81=8C=E7=99=BA=E7=94=9F=E3=81=99=E3=82=8B?= =?UTF-8?q?=E5=A0=B4=E5=90=88=E3=81=8C=E3=81=82=E3=82=8B=E5=95=8F=E9=A1=8C?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3=20(MisskeyIO#368)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/backend/src/core/NoteCreateService.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/backend/src/core/NoteCreateService.ts b/packages/backend/src/core/NoteCreateService.ts index bfd81b9f61..8625070ecb 100644 --- a/packages/backend/src/core/NoteCreateService.ts +++ b/packages/backend/src/core/NoteCreateService.ts @@ -739,12 +739,6 @@ export class NoteCreateService implements OnApplicationShutdown { // FanoutTimelineに追加 this.pushToTl(note, user); - // 未読として追加 - this.noteReadService.insertNoteUnread(additionalUser.id, note, { - isSpecified: true, - isMentioned: false, - }); - // ストリームに流す const noteObj = await this.noteEntityService.pack(note, null, { skipHide: true, withReactionAndUserPairCache: true }); this.globalEventService.publishNotesStream(noteObj);