Use Window.openWebBrowser() instead of About.openUrl() in chat script

This commit is contained in:
David Rowe 2020-10-03 17:01:01 +13:00
parent 64eb4d11e1
commit 3e94a034ca

View file

@ -322,7 +322,7 @@ function onWebEventReceived(event) {
gotoConfirm(event.url); gotoConfirm(event.url);
} }
if (event.cmd === "URL") { if (event.cmd === "URL") {
About.openUrl(event.url); Window.openWebBrowser(event.url);
} }
if (event.cmd === "EXTERNALURL") { if (event.cmd === "EXTERNALURL") {
Window.openUrl(event.url); Window.openUrl(event.url);