|
|
@@ -341,7 +341,9 @@ export default class JingleSessionPC extends JingleSession {
|
|
341
|
341
|
|| (browser.isChromiumBased()
|
|
342
|
342
|
|
|
343
|
343
|
// Provide a way to control the behavior for jvb and p2p connections independently.
|
|
344
|
|
- && this.isP2P ? options.p2p?.enableUnifiedOnChrome : options.enableUnifiedOnChrome));
|
|
|
344
|
+ && this.isP2P
|
|
|
345
|
+ ? options.p2p?.enableUnifiedOnChrome ?? true
|
|
|
346
|
+ : options.enableUnifiedOnChrome ?? true));
|
|
345
|
347
|
|
|
346
|
348
|
if (this.isP2P) {
|
|
347
|
349
|
// simulcast needs to be disabled for P2P (121) calls
|