aboutsummaryrefslogtreecommitdiff
path: root/main.js
diff options
context:
space:
mode:
authorChristoph Settgast <csett86@web.de>2022-09-24 16:19:18 +0200
committerGitHub <noreply@github.com>2022-09-24 16:19:18 +0200
commit912eb8f5a85b0f2a284fd21b384723c9f672eb86 (patch)
tree4c8f2d68dcc25341388f8cdb2e0e63840b871c65 /main.js
parent2674f1c22bbee84a79f1ccab1edf90d01c0d2acd (diff)
chore(deps) update electron to 20.2.0 (#790)
Contains Chromium 102 -> 104 update and security updates of chromium since. For details see https://www.electronjs.org/blog/electron-20-0 @jitsi/electron-sdk still requires node, so disable the sandbox on renderer This is a newly changed default with electron 20: https://www.electronjs.org/blog#default-changed-renderers-without-nodeintegration-true-are-sandboxed-by-default
Diffstat (limited to 'main.js')
-rw-r--r--main.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.js b/main.js
index 522a720..0decb91 100644
--- a/main.js
+++ b/main.js
@@ -207,7 +207,8 @@ function createJitsiMeetWindow() {
enableBlinkFeatures: 'WebAssemblyCSP',
contextIsolation: false,
nodeIntegration: false,
- preload: path.resolve(basePath, './build/preload.js')
+ preload: path.resolve(basePath, './build/preload.js'),
+ sandbox: false
}
};