From 75a822be6622342cd96c156a4395682aeb03efe0 Mon Sep 17 00:00:00 2001 From: damencho Date: Tue, 8 Dec 2015 19:00:02 -0600 Subject: [PATCH] Removes second audio track for fake FF devices. --- modules/RTC/RTCUtils.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/RTC/RTCUtils.js b/modules/RTC/RTCUtils.js index 67872b76f..761c805b4 100644 --- a/modules/RTC/RTCUtils.js +++ b/modules/RTC/RTCUtils.js @@ -146,7 +146,9 @@ function getConstraints(um, resolution, bandwidth, fps, desktopStream) { // this later can be a problem with some of the tests if(RTCBrowserType.isFirefox() && config.firefox_fake_device) { - constraints.audio = true; + // seems to be fixed now, removing this experimental fix, as having + // multiple audio tracks brake the tests + //constraints.audio = true; constraints.fake = true; }