diff options
Diffstat (limited to 'src/web/app/common/scripts/streaming/messaging.ts')
| -rw-r--r-- | src/web/app/common/scripts/streaming/messaging.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/web/app/common/scripts/streaming/messaging.ts b/src/web/app/common/scripts/streaming/messaging.ts index 1fff2286b3..c1b5875cfb 100644 --- a/src/web/app/common/scripts/streaming/messaging.ts +++ b/src/web/app/common/scripts/streaming/messaging.ts @@ -1,11 +1,12 @@ import Stream from './stream'; +import MiOS from '../../mios'; /** * Messaging stream connection */ export class MessagingStream extends Stream { - constructor(me, otherparty) { - super('messaging', { + constructor(os: MiOS, me, otherparty) { + super(os, 'messaging', { i: me.token, otherparty }); |