summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-09-12 01:48:30 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-09-12 01:48:30 +0900
commitbb8139196ec337d58f6e519e197cdc5ab567026e (patch)
treed629bf353bd138b978731ab0f165911ce00ec7bc /src
parentFix bug (diff)
downloadsharkey-bb8139196ec337d58f6e519e197cdc5ab567026e.tar.gz
sharkey-bb8139196ec337d58f6e519e197cdc5ab567026e.tar.bz2
sharkey-bb8139196ec337d58f6e519e197cdc5ab567026e.zip
Fix wrong indentation
Diffstat (limited to 'src')
-rw-r--r--src/stream.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream.ts b/src/stream.ts
index be7a8c4ba1..38a640c5da 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 {