Skip to content

Commit

Permalink
chore(deps) update electron to 20.2.0 (#790)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
csett86 authored Sep 24, 2022
1 parent 2674f1c commit 912eb8f
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 179 deletions.
3 changes: 2 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
};

Expand Down
Loading

0 comments on commit 912eb8f

Please sign in to comment.