Hide Analytics sections if piwik config is not provided

This commit is contained in:
Michael Telatynski 2020-09-16 10:29:21 +01:00
parent 6f0f427ef4
commit 771ab82598
4 changed files with 32 additions and 24 deletions

View file

@ -1214,8 +1214,8 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
StorageManager.tryPersistStorage();
if (SettingsStore.getValue("showCookieBar") && this.props.config.piwik && navigator.doNotTrack !== "1") {
showAnalyticsToast(this.props.config.piwik && this.props.config.piwik.policyUrl);
if (SettingsStore.getValue("showCookieBar") && Analytics.canEnable()) {
showAnalyticsToast(this.props.config.piwik?.policyUrl);
}
}