From 3e94a034caa8e52fe4a7959ee3e5115899e4c747 Mon Sep 17 00:00:00 2001
From: David Rowe <david@ctrlaltstudio.com>
Date: Sat, 3 Oct 2020 17:01:01 +1300
Subject: [PATCH] Use Window.openWebBrowser() instead of About.openUrl() in
 chat script

---
 scripts/communityScripts/chat/FloofChat.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/communityScripts/chat/FloofChat.js b/scripts/communityScripts/chat/FloofChat.js
index 2d8094d83e..1208a36e5f 100644
--- a/scripts/communityScripts/chat/FloofChat.js
+++ b/scripts/communityScripts/chat/FloofChat.js
@@ -322,7 +322,7 @@ function onWebEventReceived(event) {
             gotoConfirm(event.url);
         }
         if (event.cmd === "URL") {
-            About.openUrl(event.url);
+            Window.openWebBrowser(event.url);
         }
         if (event.cmd === "EXTERNALURL") {
             Window.openUrl(event.url);