Merge branch 'master' into iron-patch-1

This commit is contained in:
James S 2023-07-28 18:28:25 +00:00
commit 0a31d9d22e

View File

@ -5,9 +5,9 @@ function ask() {
if (e.message === 'Permission denied') { if (e.message === 'Permission denied') {
if (!askedOnce) if (!askedOnce)
return; return;
if (location.host.indexOf("www") !== 0) if (location.host.indexOf("www.") === 0)
location.host = "www2." + location.host; location.host = "www2." + location.host.slice(4);
else if (location.host.indexOf("www.") !== 0) else if (location.host.indexOf("www") === 0)
location.host = "www" + (Number(location.host[3]) + 1) + "." + location.host.slice(5); location.host = "www" + (Number(location.host[3]) + 1) + "." + location.host.slice(5);
else else
location.host = "www." + location.host; location.host = "www." + location.host;