From b072fdb23f61f9ebd424567025b80d370c371532 Mon Sep 17 00:00:00 2001 From: enahum Date: Tue, 20 Sep 2016 12:58:39 -0300 Subject: PLT-4239 fixes getUserMedia (#4038) --- webapp/components/webrtc/webrtc_controller.jsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'webapp/components/webrtc') diff --git a/webapp/components/webrtc/webrtc_controller.jsx b/webapp/components/webrtc/webrtc_controller.jsx index f9cf241d5..968f24638 100644 --- a/webapp/components/webrtc/webrtc_controller.jsx +++ b/webapp/components/webrtc/webrtc_controller.jsx @@ -172,10 +172,8 @@ export default class WebrtcController extends React.Component { { audio: true, video: { - mandatory: { - minAspectRatio: MIN_ASPECT, - maxAspectRatio: MAX_ASPECT - }, + minAspectRatio: MIN_ASPECT, + maxAspectRatio: MAX_ASPECT, width: VIDEO_WIDTH, height: VIDEO_HEIGHT } @@ -726,8 +724,10 @@ export default class WebrtcController extends React.Component { this.videocall.hangup(); this.toggleIcons(); - this.localMedia.getVideoTracks()[0].enabled = true; - this.localMedia.getAudioTracks()[0].enabled = true; + if (this.localMedia) { + this.localMedia.getVideoTracks()[0].enabled = true; + this.localMedia.getAudioTracks()[0].enabled = true; + } } if (error) { -- cgit v1.2.3-1-g7c22