mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 12:16:53 +02:00
Use !== instead
Signed-off-by: Aaron Raimist <aaron@raim.ist>
This commit is contained in:
parent
1739b7e0cc
commit
3a7454a52f
@ -586,7 +586,7 @@ const LoggedInView = createReactClass({
|
||||
/>;
|
||||
} else if (this.props.showCookieBar &&
|
||||
this.props.config.piwik &&
|
||||
navigator.doNotTrack != 1
|
||||
navigator.doNotTrack !== "1"
|
||||
) {
|
||||
const policyUrl = this.props.config.piwik.policyUrl || null;
|
||||
topBar = <CookieBar policyUrl={policyUrl} />;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user