From 92414a346a7e8cc3154431451a2a1a9187d28b4d Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Mon, 21 May 2018 14:54:16 -0700 Subject: [PATCH] ref(video-layout): remote thumbnail should not update large video directly --- modules/UI/videolayout/RemoteVideo.js | 9 +-------- modules/UI/videolayout/VideoLayout.js | 5 +++++ 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/modules/UI/videolayout/RemoteVideo.js b/modules/UI/videolayout/RemoteVideo.js index 0fa98fe43..41c3e6a21 100644 --- a/modules/UI/videolayout/RemoteVideo.js +++ b/modules/UI/videolayout/RemoteVideo.js @@ -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(); }; /** diff --git a/modules/UI/videolayout/VideoLayout.js b/modules/UI/videolayout/VideoLayout.js index 4f207ba49..c8e33c503 100644 --- a/modules/UI/videolayout/VideoLayout.js +++ b/modules/UI/videolayout/VideoLayout.js @@ -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()); },