From ce8aa961ea4287d803008e3535d1d79f79f2e05a Mon Sep 17 00:00:00 2001 From: George Politis Date: Tue, 31 Mar 2015 12:33:04 +0200 Subject: [PATCH] Lowers FF requirement to v38. --- modules/RTC/RTCUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/RTC/RTCUtils.js b/modules/RTC/RTCUtils.js index 1ec02712b..08680a6fa 100644 --- a/modules/RTC/RTCUtils.js +++ b/modules/RTC/RTCUtils.js @@ -130,7 +130,7 @@ function RTCUtils(RTCService) if (navigator.mozGetUserMedia) { console.log('This appears to be Firefox'); var version = parseInt(navigator.userAgent.match(/Firefox\/([0-9]+)\./)[1], 10); - if (version >= 39) { + if (version >= 38) { this.peerconnection = mozRTCPeerConnection; this.browser = RTCBrowserType.RTC_BROWSER_FIREFOX; this.getUserMedia = navigator.mozGetUserMedia.bind(navigator);