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 => {
if (url.substring(0, 4) === 'http') {
return '/' + url.split('/').splice(3).join('/');
try {
return new URL(url).pathname;
} catch (e) {
return url;
}
return url;
};
const getPayload = () => ({