Fixed goto to go to in dialog I HOPE YOU'RE HAPPY KALILA ;w;

This commit is contained in:
Fluffy Jenkins 2020-01-13 23:54:57 +00:00
parent ae620b78af
commit 64149af8ce

View file

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