From b535969845eb345f2d5293d99adb0234fe9fa5cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Sat, 25 Sep 2021 16:19:30 +0200 Subject: [PATCH] Use to-device messages in group calls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/webrtc/groupCall.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webrtc/groupCall.ts b/src/webrtc/groupCall.ts index af4e96702..e222c65aa 100644 --- a/src/webrtc/groupCall.ts +++ b/src/webrtc/groupCall.ts @@ -442,7 +442,7 @@ export class GroupCall extends EventEmitter { return; } - const newCall = this.client.createCall(this.room.roomId, member.userId); + const newCall = this.client.createCall(this.room.roomId, member.userId, true); // TODO: Move to call.placeCall() const callPromise = this.type === CallType.Video ? newCall.placeVideoCall() : newCall.placeVoiceCall();