We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c57aadb commit 53ec8e0Copy full SHA for 53ec8e0
src/webrtc/groupCall.ts
@@ -619,7 +619,7 @@ export class GroupCall extends TypedEventEmitter<
619
public async setLocalVideoMuted(muted: boolean): Promise<boolean> {
620
// Because we need a Local Call Feed to establish a call connection, we avoid muting video in case of empty
621
// video track. In this way we go sure if a client implements muting we don't raise an error.
622
- if (this.initCallWithoutVideoAndAudio && this.localCallFeed?.stream.getVideoTracks().length === 0) {
+ if (this.localCallFeed?.stream.getVideoTracks().length === 0) {
623
return false;
624
}
625
// hasAudioDevice can block indefinitely if the window has lost focus,
0 commit comments