Browse Source

Removes second audio track for fake FF devices.

master
damencho 10 years ago
parent
commit
2017457a5e
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      modules/RTC/RTCUtils.js

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

@@ -170,7 +170,9 @@ function getConstraints(um, options) {
170 170
     // this later can be a problem with some of the tests
171 171
     if(RTCBrowserType.isFirefox() && options.firefox_fake_device)
172 172
     {
173
-        constraints.audio = true;
173
+        // seems to be fixed now, removing this experimental fix, as having
174
+        // multiple audio tracks brake the tests
175
+        //constraints.audio = true;
174 176
         constraints.fake = true;
175 177
     }
176 178
 

Loading…
Cancel
Save