Merge pull request #102 from usefathom/revert-98-patch-5

Revert "link[href] is already an absolute URL", create <a> element for correct parsing.
This commit is contained in:
Danny van Kooten 2018-07-27 09:08:55 +02:00 committed by GitHub
commit 98c5487a58
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