Browse Source

Lowers FF requirement to v38.

j8
George Politis 10 years ago
parent
commit
ce8aa961ea
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/RTC/RTCUtils.js

+ 1
- 1
modules/RTC/RTCUtils.js View File

@@ -130,7 +130,7 @@ function RTCUtils(RTCService)
130 130
     if (navigator.mozGetUserMedia) {
131 131
         console.log('This appears to be Firefox');
132 132
         var version = parseInt(navigator.userAgent.match(/Firefox\/([0-9]+)\./)[1], 10);
133
-        if (version >= 39) {
133
+        if (version >= 38) {
134 134
             this.peerconnection = mozRTCPeerConnection;
135 135
             this.browser = RTCBrowserType.RTC_BROWSER_FIREFOX;
136 136
             this.getUserMedia = navigator.mozGetUserMedia.bind(navigator);

Loading…
Cancel
Save