1
Fork 0

Fix controls for down streams.

Now that down streams have labels, we need to distinguish on the
stream direction.
This commit is contained in:
Juliusz Chroboczek 2021-05-08 14:19:46 +02:00
parent ce0571cb7a
commit 8ec0a44c09
1 changed files with 2 additions and 2 deletions

View File

@ -1447,7 +1447,7 @@ function addCustomControls(media, container, c, toponly) {
let volume = getVideoButton(controls, 'volume');
if(c.label === 'camera') {
if(c.up && c.label === 'camera') {
volume.remove();
} else {
setVolumeButton(media.muted,
@ -1457,7 +1457,7 @@ function addCustomControls(media, container, c, toponly) {
container.appendChild(controls);
}
if(!document.getElementById('topcontrols-' + c.localId)) {
if(c.up && !document.getElementById('topcontrols-' + c.localId)) {
let toptemplate =
document.getElementById('topvideocontrols-template').firstElementChild;
let topcontrols = cloneHTMLElement(toptemplate);