From e989e2bbca788edbd36d1014d69dd12bd9233dc0 Mon Sep 17 00:00:00 2001 From: Paulo Bernardo Date: Wed, 1 Jul 2020 17:11:11 -0300 Subject: [PATCH] [FIX] The livechat agent activity monitor wasn't being initialised because due to an internal error (#18090) --- app/livechat/server/statistics/LivechatAgentActivityMonitor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/livechat/server/statistics/LivechatAgentActivityMonitor.js b/app/livechat/server/statistics/LivechatAgentActivityMonitor.js index 36e87baca4a..1066e112f02 100644 --- a/app/livechat/server/statistics/LivechatAgentActivityMonitor.js +++ b/app/livechat/server/statistics/LivechatAgentActivityMonitor.js @@ -44,7 +44,7 @@ export class LivechatAgentActivityMonitor { Meteor.onConnection(this._handleMeteorConnection); callbacks.add('livechat.agentStatusChanged', this._handleAgentStatusChanged); callbacks.add('livechat.setUserStatusLivechat', this._handleUserStatusLivechatChanged); - this.started = true; + this._started = true; } _startMonitoring() {