diff --git a/src/ui/siteInfo.js b/src/ui/siteInfo.js index 2bb275af..f9a18cdb 100644 --- a/src/ui/siteInfo.js +++ b/src/ui/siteInfo.js @@ -39,5 +39,6 @@ } } let ace = punycode.toASCII(domain); - location.href = `${BASE}/about/${domain};${ace}`; + let url = new URL(`/about/${domain};${ace}`, BASE); + location.href = url.href; })();