aboutsummaryrefslogtreecommitdiff
path: root/main.js
diff options
context:
space:
mode:
authorhmuresan <horatiu.muresan@8x8.com>2022-02-15 16:28:47 +0200
committerHoratiu Muresan <39557534+horymury@users.noreply.github.com>2022-02-15 19:39:53 +0200
commit233dad2421ddcab53a6e7ddb952ee93b6e1cf57c (patch)
treeabae592db6d94545336e6f9926820edd48d2bccc /main.js
parente5e11eb35ba0708beff9edb679f110d1faa59825 (diff)
chore(electron-bump) Update to electron 17.0.1
- allow plan-b until we switch to unified plan
Diffstat (limited to 'main.js')
-rw-r--r--main.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.js b/main.js
index aa37c04..6c173d5 100644
--- a/main.js
+++ b/main.js
@@ -39,6 +39,10 @@ app.commandLine.appendSwitch('disable-features', 'IOSurfaceCapturer');
// Enable Opus RED field trial.
app.commandLine.appendSwitch('force-fieldtrials', 'WebRTC-Audio-Red-For-Opus/Enabled/');
+// Allow deprecated plan-b with electron 17.0.0. We'll need to address:
+// https://community.jitsi.org/t/switch-to-unified-plan-on-chrome/98322
+app.commandLine.appendSwitch('disable-features', 'RTCDisallowPlanBOutsideDeprecationTrial');
+
// Enable optional PipeWire support.
if (!app.commandLine.hasSwitch('enable-features')) {
app.commandLine.appendSwitch('enable-features', 'WebRTCPipeWireCapturer');