Fixed logic errors
This commit is contained in:
parent
1d8e086cc3
commit
7f6f08203f
@ -5,9 +5,9 @@ function ask() {
|
||||
if (e.message === 'Permission denied') {
|
||||
if (!askedOnce)
|
||||
return;
|
||||
if (location.host.indexOf("www") !== 0)
|
||||
location.host = "www2." + location.host;
|
||||
else if (location.host.indexOf("www.") !== 0)
|
||||
if (location.host.indexOf("www.") === 0)
|
||||
location.host = "www2." + location.host.slice(4);
|
||||
else if (location.host.indexOf("www") === 0)
|
||||
location.host = "www" + (Number(location.host[3]) + 1) + "." + location.host.slice(5);
|
||||
else
|
||||
location.host = "www." + location.host;
|
||||
|
Loading…
x
Reference in New Issue
Block a user