diff --git a/src/web/app/common/tags/url.tag b/src/web/app/common/tags/url.tag index 0ad9e72b5..330acf821 100644 --- a/src/web/app/common/tags/url.tag +++ b/src/web/app/common/tags/url.tag @@ -33,15 +33,14 @@ this.url = this.opts.href; this.on('before-mount', () => { - parser = document.createElement('a'); - parser.href = this.url; + const url = new URL(this.url); - this.schema = parser.protocol; - this.hostname = parser.hostname; - this.port = parser.port; - this.pathname = parser.pathname; - this.query = parser.search; - this.hash = parser.hash; + this.schema = url.protocol; + this.hostname = url.hostname; + this.port = url.port; + this.pathname = url.pathname; + this.query = url.search; + this.hash = url.hash; this.update(); });