Use to-device messages in group calls

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2021-09-25 16:19:30 +02:00
parent 027bc6bfc9
commit b535969845
+1 -1
View File
@@ -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();