Fix issue on audio calls

This commit is contained in:
Pierre HUBERT 2020-04-13 18:49:02 +02:00
parent e27797cdcd
commit bc3bdeec05

View File

@ -254,11 +254,12 @@ class CallWindow extends CustomEvents {
) )
// Video button // Video button
setButtonSelected( if(this.allowVideo)
bottomArea.querySelector("[data-label=\"camera\"]"), setButtonSelected(
this.mainStream && this.mainStream.getVideoTracks().length > 0 && bottomArea.querySelector("[data-label=\"camera\"]"),
this.mainStream.getVideoTracks()[0].enabled this.mainStream && this.mainStream.getVideoTracks().length > 0 &&
) this.mainStream.getVideoTracks()[0].enabled
)
} }
this.on("localVideo", () => { this.on("localVideo", () => {