From 3314640b014b92769eb073fc6750064d75b8608c Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 30 Jul 2018 07:23:44 +0900 Subject: [PATCH] Fix bug --- src/stream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream.ts b/src/stream.ts index 6db47ecae..be7a8c4ba 100644 --- a/src/stream.ts +++ b/src/stream.ts @@ -22,7 +22,7 @@ export function publishDriveStream(userId: ID, type: string, value?: any): void } export function publishNoteStream(noteId: ID, type: string): void { - publish(`note-stream:${noteId}`, type, noteId); + publish(`note-stream:${noteId}`, null, noteId); } export function publishUserListStream(listId: ID, type: string, value?: any): void {