mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
commit
d863e9ce49
2 changed files with 4 additions and 2 deletions
|
|
@ -59,7 +59,9 @@ export const doNotTrack = () => {
|
|||
navigator.doNotTrack == 'yes' ||
|
||||
navigator.doNotTrack == '1' ||
|
||||
navigator.msDoNotTrack == '1' ||
|
||||
(window.external.msTrackingProtectionEnabled && window.external.msTrackingProtectionEnabled())
|
||||
(window.external &&
|
||||
window.external.msTrackingProtectionEnabled &&
|
||||
window.external.msTrackingProtectionEnabled())
|
||||
) {
|
||||
return true;
|
||||
} else {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue