1
0
mirror of https://github.com/pierre42100/ComunicWeb synced 2025-07-14 15:08:09 +00:00

Fix issue on audio calls

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

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