diff options
author | Christoph Settgast <csett86@web.de> | 2022-09-24 16:19:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 16:19:18 +0200 |
commit | 912eb8f5a85b0f2a284fd21b384723c9f672eb86 (patch) | |
tree | 4c8f2d68dcc25341388f8cdb2e0e63840b871c65 /main.js | |
parent | 2674f1c22bbee84a79f1ccab1edf90d01c0d2acd (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.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 } }; |