Skip to content

Commit

Permalink
[FIX] User abandonment setting is working again (#25520)
Browse files Browse the repository at this point in the history
  • Loading branch information
cauefcr authored and ggazzo committed May 24, 2022
1 parent e3cf242 commit ace85f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/meteor/ee/app/livechat-enterprise/server/startup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ settings.change('Livechat_max_queue_wait_time', function () {
});

Meteor.startup(async function () {
settings.change('Livechat_abandoned_rooms_action', function (value) {
settings.watch('Livechat_abandoned_rooms_action', function (value) {
updatePredictedVisitorAbandonment();
if (!value || value === 'none') {
return visitorActivityMonitor.stop();
Expand Down

0 comments on commit ace85f5

Please sign in to comment.