mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Always expect generationTimeMs
This commit is contained in:
parent
187e8ab8a8
commit
f29b58aba5
1 changed files with 4 additions and 3 deletions
|
@ -148,6 +148,9 @@ class Analytics {
|
|||
}
|
||||
|
||||
trackPageChange(generationTimeMs) {
|
||||
if (typeof generationTimeMs !== 'number') {
|
||||
throw new Error('Analytics.trackPageChange: expected generationTimeMs to be a number');
|
||||
}
|
||||
if (this.disabled) return;
|
||||
if (this.firstPage) {
|
||||
// De-duplicate first page
|
||||
|
@ -156,9 +159,7 @@ class Analytics {
|
|||
return;
|
||||
}
|
||||
this._paq.push(['setCustomUrl', getRedactedUrl()]);
|
||||
if (typeof generationTimeMs === 'number') {
|
||||
this._paq.push(['setGenerationTimeMs', generationTimeMs]);
|
||||
}
|
||||
this._paq.push(['setGenerationTimeMs', generationTimeMs]);
|
||||
this._paq.push(['trackPageView']);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue