Fixes issue with avatar not being displayed when user is in the lastN set, but has video muted.

pull/361/head 674
paweldomas 9 years ago
parent a7cd8bab11
commit 260b610725
  1. 6
      modules/UI/videolayout/RemoteVideo.js

@ -268,8 +268,10 @@ RemoteVideo.prototype.showPeerContainer = function (state) {
resizeThumbnails = true;
$(this.container).show();
}
this.showAvatar(state !== 'show');
// Call showAvatar with undefined, so that we'll figure out if avatar
// should be displayed based on video muted status and whether or not
// it's in the lastN set
this.showAvatar(undefined);
}
else if ($(this.container).is(':visible') && isHide)
{

Loading…
Cancel
Save