mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 09:05:36 +01:00
URI encode title, url and referrer in tracker.
This commit is contained in:
parent
288836d4a5
commit
0d442b751d
1 changed files with 3 additions and 3 deletions
|
|
@ -44,9 +44,9 @@
|
||||||
hostname,
|
hostname,
|
||||||
screen,
|
screen,
|
||||||
language,
|
language,
|
||||||
title,
|
title: encodeURIComponent(title),
|
||||||
url: currentUrl,
|
url: encodeURI(currentUrl),
|
||||||
referrer: currentRef,
|
referrer: encodeURI(currentRef),
|
||||||
});
|
});
|
||||||
|
|
||||||
/* Event handlers */
|
/* Event handlers */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue