fix(LargeVideoManager): hide video when avatar is displayed

pull/938/head
paweldomas 9 years ago
parent 0aea799b50
commit b8937e0349
  1. 3
      modules/UI/videolayout/LargeVideoManager.js

@ -162,7 +162,8 @@ export default class LargeVideoManager {
// but we still should show watermark
if (isVideoMuted) {
this.showWatermark(true);
promise = Promise.resolve();
// If the avatar is to be displayed the video should be hidden
promise = container.hide();
} else {
promise = container.show();
}

Loading…
Cancel
Save