You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-12-22 09:02:11 +03:00
Null check before accessing _paq
This commit is contained in:
@@ -164,13 +164,6 @@ class Analytics {
|
|||||||
}
|
}
|
||||||
|
|
||||||
trackPageChange(generationTimeMs) {
|
trackPageChange(generationTimeMs) {
|
||||||
if (typeof generationTimeMs === 'number') {
|
|
||||||
this._paq.push(['setGenerationTimeMs', generationTimeMs]);
|
|
||||||
} else {
|
|
||||||
console.warn('Analytics.trackPageChange: expected generationTimeMs to be a number');
|
|
||||||
// But continue anyway because we still want to track the change
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.disabled) return;
|
if (this.disabled) return;
|
||||||
if (this.firstPage) {
|
if (this.firstPage) {
|
||||||
// De-duplicate first page
|
// De-duplicate first page
|
||||||
@@ -178,6 +171,14 @@ class Analytics {
|
|||||||
this.firstPage = false;
|
this.firstPage = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (typeof generationTimeMs === 'number') {
|
||||||
|
this._paq.push(['setGenerationTimeMs', generationTimeMs]);
|
||||||
|
} else {
|
||||||
|
console.warn('Analytics.trackPageChange: expected generationTimeMs to be a number');
|
||||||
|
// But continue anyway because we still want to track the change
|
||||||
|
}
|
||||||
|
|
||||||
this._paq.push(['setCustomUrl', getRedactedUrl()]);
|
this._paq.push(['setCustomUrl', getRedactedUrl()]);
|
||||||
this._paq.push(['trackPageView']);
|
this._paq.push(['trackPageView']);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user