Fixing missed variable name

This commit is contained in:
HariJ 2017-05-08 18:50:20 -07:00
parent 3321f7d39c
commit a05eb9047e

View file

@ -73,7 +73,7 @@ for (let arg of process.argv) {
isBackgroundPage = true
} else if (arg.indexOf('--app-path=') === 0) {
appPath = arg.substr(arg.indexOf('=') + 1)
} else if (arg.indexOf('--enable-webview-override=') === 0) {
} else if (arg.indexOf('--override-webview-security=') === 0) {
overrideWebViewSecurity = arg.substr(arg.indexOf('=') + 1)
}
}