Fixed XF.DynamicDate doesn't work well with privacy.resistFingerprinting set to true in Firefox

TickTackk

Well-known member
Affected version
2.*
^ Title and this is probably the fix
Find:
JavaScript:
if (window.performance && window.performance.timing)
Replace with:
JavaScript:
if (window.performance && window.performance.timing && window.performance.timing.requestStart !== 0)
Inside core.js
 
Back
Top Bottom