mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
Fix tracker for IE 11.
This commit is contained in:
parent
b176cc52e9
commit
598a95af94
@ -35,7 +35,7 @@ import { removeTrailingSlash } from '../lib/url';
|
||||
|
||||
const root = hostUrl
|
||||
? removeTrailingSlash(hostUrl)
|
||||
: new URL(script.src).href.split('/').slice(0, -1).join('/');
|
||||
: script.src.split('/').slice(0, -1).join('/');
|
||||
const screen = `${width}x${height}`;
|
||||
const listeners = [];
|
||||
let currentUrl = `${pathname}${search}`;
|
||||
@ -139,8 +139,7 @@ import { removeTrailingSlash } from '../lib/url';
|
||||
const newUrl = url.toString();
|
||||
|
||||
if (newUrl.substring(0, 4) === 'http') {
|
||||
const { pathname, search } = new URL(newUrl);
|
||||
currentUrl = `${pathname}${search}`;
|
||||
currentUrl = '/' + newUrl.split('/').splice(3).join('/');
|
||||
} else {
|
||||
currentUrl = newUrl;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user