mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
respect DNT
This commit is contained in:
parent
5ad0ff3fa4
commit
4a3ce9acba
2 changed files with 2 additions and 2 deletions
File diff suppressed because one or more lines are too long
|
|
@ -13,7 +13,7 @@ import { post, hook } from '../lib/web';
|
|||
|
||||
const script = document.querySelector('script[data-website-id]');
|
||||
|
||||
if (!script) return;
|
||||
if (!script || navigator.doNotTrack === "1") return;
|
||||
|
||||
const website = script.getAttribute('data-website-id');
|
||||
const hostUrl = new URL(script.src).origin;
|
||||
|
|
|
|||
Loading…
Reference in a new issue