From 36119f4cb474b47c0b96940da00634442eae2682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Vacek?= Date: Thu, 27 Aug 2020 10:01:05 +0200 Subject: [PATCH] Update index.js better solution from @mikecao, it's not dependent on script name --- tracker/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracker/index.js b/tracker/index.js index e248f906..a30a0220 100644 --- a/tracker/index.js +++ b/tracker/index.js @@ -17,7 +17,7 @@ import { post, hook, doNotTrack } from '../lib/web'; if (!script || (__DNT__ && doNotTrack())) return; const website = script.getAttribute('data-website-id'); - const hostUrl = new URL(script.src).href.replace(/\/umami\.js$/,''); + const hostUrl = new URL(script.src).href.split('/').slice(0, -1).join('/'); const screen = `${width}x${height}`; const listeners = [];