Fix opening external links in SplatNet 3

This commit is contained in:
Samuel Elliott 2023-02-28 17:23:58 +00:00
parent ccf0951df5
commit c6c8ff9d2d
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6

View File

@ -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();
}
});