mirror of https://github.com/vector-im/riot-web
fix async behaviour, tracking should maybe use Async Piwik tracker
events before piwik loads are lost currently blocking for piwik would be stupid. Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
f5d336103e
commit
75e386e0ee
|
@ -32,9 +32,7 @@ class Analytics {
|
|||
* otherwise try and initalize, no-op if piwik config missing
|
||||
*/
|
||||
enable() {
|
||||
if (this.tracker || this._init()) {
|
||||
this.disabled = false;
|
||||
}
|
||||
if (!this.tracker) this._init();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -71,6 +69,7 @@ class Analytics {
|
|||
}
|
||||
|
||||
_set(tracker) {
|
||||
this.disabled = false;
|
||||
this.tracker = tracker;
|
||||
this.tracker.discardHashTag(false);
|
||||
this.tracker.enableHeartBeatTimer();
|
||||
|
|
Loading…
Reference in New Issue