-
-
Notifications
You must be signed in to change notification settings - Fork 746
Closed
Description
- Version: 7.30.2
- Target: Windows
Setting NodeIntegration to true results in overwriting all other options in WebPreferences to its defaults. So it is impossible to use NodeIntegration = true along with WebSecurity = false, because WebSecurity value will be ignored.
Steps to Reproduce:
This can be reproduced using simple new generated electron app
await Electron.WindowManager.CreateWindowAsync(new BrowserWindowOptions
{
Show = true,
WebPreferences = new WebPreferences
{
AllowRunningInsecureContent = true,
WebSecurity = false,
NodeIntegration = true,
},
});
Reactions are currently unavailable