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();