Merge pull request #2337 from aldo-roman/master

fix(tracker): Correctly extract pathname
This commit is contained in:
Mike Cao
2023-10-11 19:28:22 -10:00
committed by GitHub

View File

@@ -43,10 +43,11 @@
}; };
const getPath = url => { const getPath = url => {
if (url.substring(0, 4) === 'http') { try {
return '/' + url.split('/').splice(3).join('/'); return new URL(url).pathname;
} catch (e) {
return url;
} }
return url;
}; };
const getPayload = () => ({ const getPayload = () => ({