From 8c6aa9f5faf9580851093e2c5d786a27ade5f74a Mon Sep 17 00:00:00 2001 From: Agampreet Singh <68941022+agam778@users.noreply.github.com> Date: Tue, 20 Aug 2024 01:13:53 +0530 Subject: [PATCH] Fix external URL opening even if the protocol is not http or https --- app/main.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/main.js b/app/main.js index 3bd1279..f4a2799 100644 --- a/app/main.js +++ b/app/main.js @@ -176,7 +176,6 @@ app.on("web-contents-created", (event, contents) => { return { action: "deny" }; } } else { - shell.openExternal(url); return { action: "deny" }; } } else {