mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-24 19:10:21 +01:00
Fixed page titles in tracker.
This commit is contained in:
parent
a2245efa2d
commit
226c6e313f
@ -44,7 +44,7 @@
|
||||
hostname,
|
||||
screen,
|
||||
language,
|
||||
title: encodeURIComponent(title),
|
||||
title: title ? encodeURIComponent(title) : undefined,
|
||||
url: encodeURI(currentUrl),
|
||||
referrer: encodeURI(currentRef),
|
||||
});
|
||||
@ -79,7 +79,7 @@
|
||||
|
||||
const handleTitleChanges = () => {
|
||||
const observer = new MutationObserver(([entry]) => {
|
||||
title = entry && entry.target ? entry.target.text : undefined;
|
||||
title = entry && entry.target ? entry.target.data : undefined;
|
||||
});
|
||||
|
||||
const node = document.querySelector('head > title');
|
||||
|
Loading…
Reference in New Issue
Block a user