From 3576cf64ee1eb9aceed011baab7c684a44ddac6d Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sat, 16 Oct 2021 17:16:34 +0700 Subject: [PATCH] Fix opening the plugin config sheet Fixes #1041 --- main/windows/config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/windows/config.ts b/main/windows/config.ts index 006140f6..f44d4e43 100644 --- a/main/windows/config.ts +++ b/main/windows/config.ts @@ -22,7 +22,8 @@ const openConfigWindow = async (pluginName: string) => { parent: prefsWindow, modal: true, webPreferences: { - nodeIntegration: true + nodeIntegration: true, + enableRemoteModule: true } });