Fixes few undefined errors on standby.

This commit is contained in:
damencho 2019-06-24 09:51:23 +01:00 committed by yanas
parent 742905e05a
commit 96f013c549
1 changed files with 2 additions and 2 deletions

View File

@ -637,7 +637,7 @@ const VideoLayout = {
*/
onVideoMute(id, value) {
if (APP.conference.isLocalId(id)) {
localVideoThumbnail.setVideoMutedView(value);
localVideoThumbnail && localVideoThumbnail.setVideoMutedView(value);
} else {
const remoteVideo = remoteVideos[id];
@ -985,7 +985,7 @@ const VideoLayout = {
} else if (currentId) {
const currentSmallVideo = this.getSmallVideo(currentId);
currentSmallVideo.updateView();
currentSmallVideo && currentSmallVideo.updateView();
}
},