From bcda871818a17c8e8c67aa1dfb9cfcf1a3cf2b3b 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: Thu, 19 Oct 2023 06:18:36 +0900 Subject: [PATCH] =?UTF-8?q?NotesStream=E3=81=AB=E6=B5=81=E3=81=99=E6=96=B0?= =?UTF-8?q?=E8=A6=8F=E3=83=8E=E3=83=BC=E3=83=88=E3=81=AF=E5=8C=BF=E5=90=8D?= =?UTF-8?q?=E3=81=A7pack=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=20(M?= =?UTF-8?q?isskeyIO#187)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit MisskeyIO#134 の不具合修正 --- packages/backend/src/core/NoteCreateService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/core/NoteCreateService.ts b/packages/backend/src/core/NoteCreateService.ts index 11a52807b6..bea536b327 100644 --- a/packages/backend/src/core/NoteCreateService.ts +++ b/packages/backend/src/core/NoteCreateService.ts @@ -552,7 +552,7 @@ export class NoteCreateService implements OnApplicationShutdown { } // Pack the note - const noteObj = await this.noteEntityService.pack(note, user); + const noteObj = await this.noteEntityService.pack(note, null); this.globalEventService.publishNotesStream(noteObj);