Revert "link[href] is already an absolute URL"

This commit is contained in:
Danny van Kooten 2018-07-27 09:08:25 +02:00 committed by GitHub
parent fe624a63a1
commit 3418e81ea5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -73,7 +73,11 @@ function trackPageview() {
// parse canonical, if page has one // parse canonical, if page has one
let canonical = document.querySelector('link[rel="canonical"][href]'); let canonical = document.querySelector('link[rel="canonical"][href]');
if(canonical) { if(canonical) {
req = canonical.href; let a = document.createElement('a');
a.href = canonical.href;
// use parsed canonical as location object
req = a;
} }
// get path and pathname from location or canonical // get path and pathname from location or canonical