|
@@ -65,7 +65,7 @@ const init = async () => {
|
|
|
let host = window.location.host;
|
|
let host = window.location.host;
|
|
|
if (domain !== host) {
|
|
if (domain !== host) {
|
|
|
let urlFull = new URL(window.location.href);
|
|
let urlFull = new URL(window.location.href);
|
|
|
- urlFull.hostname = domain;
|
|
|
|
|
|
|
+ urlFull.host = domain;
|
|
|
window.location.href = urlFull.toString();
|
|
window.location.href = urlFull.toString();
|
|
|
}
|
|
}
|
|
|
|
|
|