fix start of app with password set

pull/1872/head
audric 4 years ago
parent f48b57d077
commit c355125326

@ -25,6 +25,7 @@
"concat": { "concat": {
"app": [ "app": [
"node_modules/jquery/dist/jquery.js", "node_modules/jquery/dist/jquery.js",
"node_modules/bytebuffer/dist/bytebuffer.min.js",
"node_modules/long/dist/long.js", "node_modules/long/dist/long.js",
"components/protobuf/**/*.js", "components/protobuf/**/*.js",
"node_modules/mustache/mustache.js", "node_modules/mustache/mustache.js",

@ -155,6 +155,7 @@ exports.loadData = readAttachmentData => {
} }
const isAlreadyLoaded = exports.hasData(attachment); const isAlreadyLoaded = exports.hasData(attachment);
if (isAlreadyLoaded) { if (isAlreadyLoaded) {
return attachment; return attachment;
} }

@ -466,7 +466,10 @@ function showPasswordWindow() {
autoHideMenuBar: false, autoHideMenuBar: false,
webPreferences: { webPreferences: {
nodeIntegration: false, nodeIntegration: false,
enableRemoteModule: true,
nodeIntegrationInWorker: false, nodeIntegrationInWorker: false,
contextIsolation: false,
// sandbox: true, // sandbox: true,
preload: path.join(__dirname, 'password_preload.js'), preload: path.join(__dirname, 'password_preload.js'),
nativeWindowOpen: true, nativeWindowOpen: true,

Loading…
Cancel
Save