Fixed page titles in tracker.

This commit is contained in:
Mike Cao 2024-03-11 19:13:53 -07:00
parent a2245efa2d
commit 226c6e313f
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@
hostname, hostname,
screen, screen,
language, language,
title: encodeURIComponent(title), title: title ? encodeURIComponent(title) : undefined,
url: encodeURI(currentUrl), url: encodeURI(currentUrl),
referrer: encodeURI(currentRef), referrer: encodeURI(currentRef),
}); });
@ -79,7 +79,7 @@
const handleTitleChanges = () => { const handleTitleChanges = () => {
const observer = new MutationObserver(([entry]) => { 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'); const node = document.querySelector('head > title');