ref(video-layout): remote thumbnail should not update large video directly
This commit is contained in:
parent
6f962be322
commit
92414a346a
|
@ -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();
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -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());
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue