From c6c8ff9d2d98f4f551b62e31db79b5141a1a0e61 Mon Sep 17 00:00:00 2001 From: Samuel Elliott Date: Tue, 28 Feb 2023 17:23:58 +0000 Subject: [PATCH] Fix opening external links in SplatNet 3 --- src/app/main/webservices.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/main/webservices.ts b/src/app/main/webservices.ts index 0cb0720..755fa53 100644 --- a/src/app/main/webservices.ts +++ b/src/app/main/webservices.ts @@ -68,6 +68,8 @@ export default async function openWebService( if (!isWebServiceUrlAllowed(webservice, url)) { debug('Web service attempted to navigate to a URL not allowed by it\'s `whiteList`', webservice, url); + debug('open', url); + shell.openExternal(url); event.preventDefault(); } });