From bb8139196ec337d58f6e519e197cdc5ab567026e Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 12 Sep 2018 01:48:30 +0900 Subject: [PATCH] Fix wrong indentation --- src/stream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream.ts b/src/stream.ts index be7a8c4ba..38a640c5d 100644 --- a/src/stream.ts +++ b/src/stream.ts @@ -10,7 +10,7 @@ function publish(channel: string, type: string, value?: any): void { { type: type } : { type: type, body: value }; - ev.emit(channel, message); + ev.emit(channel, message); } export function publishUserStream(userId: ID, type: string, value?: any): void {