From 1439c3245b961de910b753ff2d5069c17e79af4b Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 15 Mar 2018 19:53:46 +0900 Subject: :v: --- src/web/app/common/scripts/streaming/channel.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/web/app/common/scripts/streaming/channel.ts') diff --git a/src/web/app/common/scripts/streaming/channel.ts b/src/web/app/common/scripts/streaming/channel.ts index 434b108b9e..cab5f4edb4 100644 --- a/src/web/app/common/scripts/streaming/channel.ts +++ b/src/web/app/common/scripts/streaming/channel.ts @@ -1,11 +1,12 @@ import Stream from './stream'; +import MiOS from '../../mios'; /** * Channel stream connection */ export default class Connection extends Stream { - constructor(channelId) { - super('channel', { + constructor(os: MiOS, channelId) { + super(os, 'channel', { channel: channelId }); } -- cgit v1.3.1-freya