removed insecure options from popups, see #1437

This commit is contained in:
antelle 2020-04-03 18:17:44 +02:00
parent 05b2b395ad
commit f7eab86166
No known key found for this signature in database
GPG Key ID: 094A2F2D6136A4EE
1 changed files with 1 additions and 9 deletions

View File

@ -36,15 +36,7 @@ const PopupNotifier = {
},
_openLauncherWindow(url, title, settings) {
const opts = {
show: false,
webPreferences: {
nodeIntegration: false,
webSecurity: false,
allowDisplayingInsecureContent: true,
allowRunningInsecureContent: true
}
};
const opts = { show: false };
if (settings) {
const settingsObj = {};
settings.split(',').forEach(part => {