From 2093ae5c6dbce9bb47af9a78a7ff6fcef75ce215 Mon Sep 17 00:00:00 2001 From: Radu Ioan Fericean Date: Fri, 19 Feb 2016 13:43:15 +0200 Subject: [PATCH] merge error fixed --- engine/account.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/account.go b/engine/account.go index f8dfc1f3a..5043ba404 100644 --- a/engine/account.go +++ b/engine/account.go @@ -701,7 +701,7 @@ func (acc *Account) InitCounters() { acc.UnitCounters[at.Balance.GetType()] = append(acc.UnitCounters[at.Balance.GetType()], uc) } - c := &CounterFilter{Filter: at.Balance} + c := &CounterFilter{Filter: at.Balance.Clone()} if (c.Filter.ID == nil || *c.Filter.ID == "") && at.UniqueID != "" { c.Filter.ID = utils.StringPointer(at.UniqueID) }