mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Prevent undefined strings in tracker.
This commit is contained in:
parent
4e77d95809
commit
a5362d9197
1 changed files with 4 additions and 0 deletions
|
|
@ -33,6 +33,10 @@
|
|||
/* Helper functions */
|
||||
|
||||
const encode = str => {
|
||||
if (!str) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
try {
|
||||
const result = decodeURI(str);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue