aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Settgast <csett86@web.de>2022-03-04 22:20:33 +0100
committerGitHub <noreply@github.com>2022-03-04 22:20:33 +0100
commit381903bb3d569198f6eb2abdfe7cdaf8f80b8c6e (patch)
treecaaa61efda282eb0b2cb936e9629b725ba6ee225
parent449f0d7087a05de49125edc849405cb42e8d8219 (diff)
chore: nativeWindowOpen is default true and will be removed with electron18 (#723)
nativeWindowOpen is default since Electron 15, and the parameter will be removed with Electron 18, thus prep for this. See https://github.com/electron/electron/blob/main/docs/breaking-changes.md#removed-nativewindowopen
-rw-r--r--main.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/main.js b/main.js
index 6c173d5..7f746d8 100644
--- a/main.js
+++ b/main.js
@@ -209,7 +209,6 @@ function createJitsiMeetWindow() {
webPreferences: {
enableBlinkFeatures: 'WebAssemblyCSP',
contextIsolation: false,
- nativeWindowOpen: true,
nodeIntegration: false,
preload: path.resolve(basePath, './build/preload.js')
}