diff options
author | Christoph Settgast <csett86@web.de> | 2022-03-04 22:20:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 22:20:33 +0100 |
commit | 381903bb3d569198f6eb2abdfe7cdaf8f80b8c6e (patch) | |
tree | caaa61efda282eb0b2cb936e9629b725ba6ee225 | |
parent | 449f0d7087a05de49125edc849405cb42e8d8219 (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.js | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -209,7 +209,6 @@ function createJitsiMeetWindow() { webPreferences: { enableBlinkFeatures: 'WebAssemblyCSP', contextIsolation: false, - nativeWindowOpen: true, nodeIntegration: false, preload: path.resolve(basePath, './build/preload.js') } |