Fixes mute check, prevents disabling the menu when the remote participant is muted.

pull/386/merge 723
damencho 9 years ago
parent 5446c513f5
commit 374763c325
  1. 2
      modules/UI/videolayout/RemoteVideo.js

@ -320,7 +320,7 @@ RemoteVideo.prototype.updateRemoteVideoMenu = function (isMuted) {
if (muteMenuItem.length) {
var muteLink = muteMenuItem.get(0);
if (isMuted === 'true') {
if (isMuted) {
muteLink.innerHTML = mutedIndicator + ' Muted';
muteLink.className = 'mutelink disabled';
}

Loading…
Cancel
Save