Browse Source

Fix master password functionality by enabling remote/disabling contextIsolation.

Fixes #288.
pull/3202/head
TheGoddessInari 3 years ago
parent
commit
7b9643911d
No known key found for this signature in database
GPG Key ID: 1209B1B7632D69A
  1. 4
      electron/main.js

4
electron/main.js

@ -234,7 +234,9 @@ function createMasterPasswordWindow() {
backgroundColor: '#0675A0' backgroundColor: '#0675A0'
,frame: false ,frame: false
,webPreferences: { ,webPreferences: {
nodeIntegration: true nodeIntegration: true,
enableRemoteModule: true,
contextIsolation: false
} }
}); });

Loading…
Cancel
Save