RTCBundlePolicy bundlePolicy = RTCBundlePolicyBalanced;
String bundlePolicyString;
if (DictionaryHelper::get(configuration, "bundlePolicy", bundlePolicyString)) {
if (bundlePolicyString == "max-compat") {
bundlePolicy = RTCBundlePolicyMaxCompat;
} else if (bundlePolicyString == "max-bundle") {
bundlePolicy = RTCBundlePolicyMaxBundle;
} else if (bundlePolicyString != "balanced") {
exceptionState.throwTypeError("Malformed RTCBundlePolicy");
return 0;
}
}
if(adapter.browserDetails.browser === "edge" || window.navigator.userAgent.indexOf('Chrome/54') != -1 || window.navigator.userAgent.indexOf('Chrome/53') != -1) {
// This is Edge, enable BUNDLE explicitly
pc_config.bundlePolicy = "max-bundle";
}--
You received this message because you are subscribed to the Google Groups "meetecho-janus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meetecho-janus+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


if (adapter.browserDetails.browser === "edge" ||
window.navigator.userAgent.indexOf('Chrome/53') != -1 ||
window.navigator.userAgent.indexOf('Chrome/54') != -1 ||
window.navigator.userAgent.indexOf('Chrome/55') != -1
) {
// This is Edge, enable BUNDLE explicitly
pc_config.bundlePolicy = "max-bundle";
}
--
You received this message because you are subscribed to the Google Groups "meetecho-janus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meetecho-janus+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to meetecho-janu...@googlegroups.com.
We tested from 49 to 61... happens from 49 to 54 and stopped happening after 54.