diff --git a/engine/stats_queue.go b/engine/stats_queue.go index 51bcf094d..6abe86bd9 100644 --- a/engine/stats_queue.go +++ b/engine/stats_queue.go @@ -76,7 +76,7 @@ func (sq *StatsQueue) UpdateConf(conf *CdrStats) { sq.mux.Lock() defer sq.mux.Unlock() // check if new conf asks for action trigger reset only - if sq.conf != nil && (!conf.hasGeneralConfigs() || sq.conf.equalExceptTriggers(conf)) { + if sq.conf != nil && (conf.hasGeneralConfigs() || sq.conf.equalExceptTriggers(conf)) { sq.conf.Triggers = conf.Triggers return }