From 64149af8ce188452365b851690b715a2a07dcccf Mon Sep 17 00:00:00 2001 From: Fluffy Jenkins Date: Mon, 13 Jan 2020 23:54:57 +0000 Subject: [PATCH] Fixed goto to go to in dialog I HOPE YOU'RE HAPPY KALILA ;w; --- scripts/communityModules/chat/FloofChat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/communityModules/chat/FloofChat.js b/scripts/communityModules/chat/FloofChat.js index 92f69c9c32..438adb662d 100644 --- a/scripts/communityModules/chat/FloofChat.js +++ b/scripts/communityModules/chat/FloofChat.js @@ -174,7 +174,7 @@ var chatBarChannel = "Local"; function gotoConfirm(url) { - var result = Window.confirm("Do you want to goto " + ((url.indexOf("/") !== -1) ? url.split("/")[2] : url) + " ?"); + var result = Window.confirm("Do you want to go to '" + ((url.indexOf("/") !== -1) ? url.split("/")[2] : url) + "'?"); if (result) { location = url; }