Fixes few undefined errors on standby.

This commit is contained in:
damencho
2019-06-24 12:06:27 +01:00
committed by yanas
parent 742905e05a
commit 96f013c549
+2 -2
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();
}
},