diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-12 01:48:30 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-12 01:48:30 +0900 |
| commit | bb8139196ec337d58f6e519e197cdc5ab567026e (patch) | |
| tree | d629bf353bd138b978731ab0f165911ce00ec7bc /src | |
| parent | Fix bug (diff) | |
| download | sharkey-bb8139196ec337d58f6e519e197cdc5ab567026e.tar.gz sharkey-bb8139196ec337d58f6e519e197cdc5ab567026e.tar.bz2 sharkey-bb8139196ec337d58f6e519e197cdc5ab567026e.zip | |
Fix wrong indentation
Diffstat (limited to 'src')
| -rw-r--r-- | src/stream.ts | 2 |
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 { |