ref(video-layout): remote thumbnail should not update large video directly

This commit is contained in:
Leonard Kim 2018-05-21 14:54:16 -07:00 committed by virtuacoplenny
parent 6f962be322
commit 92414a346a
2 changed files with 6 additions and 8 deletions

View File

@ -366,14 +366,7 @@ RemoteVideo.prototype.removeRemoteStreamElement = function(stream) {
logger.info(`${isVideo ? 'Video' : 'Audio'
} removed ${this.id}`, select);
// when removing only the video element and we are on stage
// update the stage
if (isVideo && this.isCurrentlyOnLargeVideo()) {
this.VideoLayout.updateLargeVideo(this.id);
} else {
// Missing video stream will affect display mode
this.updateView();
}
this.updateView();
};
/**

View File

@ -347,6 +347,11 @@ const VideoLayout = {
if (remoteVideo) {
remoteVideo.removeRemoteStreamElement(stream);
}
if (stream.isVideoTrack() && this.isCurrentlyOnLarge(id)) {
this.updateLargeVideo(id);
}
this.updateMutedForNoTracks(id, stream.getType());
},