From b0d2a798733c07e22e22b962df4ef1981e9f1096 Mon Sep 17 00:00:00 2001 From: gpolitis Date: Thu, 28 May 2015 11:45:10 +0200 Subject: [PATCH] Require FF 40 or above for a good experience. --- 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 323527ad7..61bec0fc3 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 >= 38 + if (version >= 40 && !config.enableSimulcast && config.useBundle && config.useRtcpMux) { this.peerconnection = mozRTCPeerConnection; this.browser = RTCBrowserType.RTC_BROWSER_FIREFOX;