Fixes few undefined errors on standby.
This commit is contained in:
parent
742905e05a
commit
96f013c549
|
@ -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();
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue