Removes second audio track for fake FF devices.
This commit is contained in:
parent
08107ca95b
commit
75a822be66
|
@ -146,7 +146,9 @@ function getConstraints(um, resolution, bandwidth, fps, desktopStream) {
|
||||||
// this later can be a problem with some of the tests
|
// this later can be a problem with some of the tests
|
||||||
if(RTCBrowserType.isFirefox() && config.firefox_fake_device)
|
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;
|
constraints.fake = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue