From 8d7d0b13ec18b7df32018031f88ee29136a15f85 Mon Sep 17 00:00:00 2001 From: DanB Date: Tue, 22 Dec 2015 17:15:37 +0100 Subject: [PATCH] Diameter fix for composed value to use regexp --- agents/libdmt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents/libdmt.go b/agents/libdmt.go index b490434e4..b08534e54 100644 --- a/agents/libdmt.go +++ b/agents/libdmt.go @@ -263,7 +263,7 @@ func composedFieldvalue(m *diam.Message, outTpl utils.RSRFields, avpIdx int) str utils.Logger.Warning(fmt.Sprintf(" Value for field template with id: %s is matching a group AVP, ignoring.", rsrTpl.Id)) continue // Not convertible, ignore } - outVal += avpValAsString(matchingAvps[avpIdx]) + outVal += rsrTpl.ParseValue(avpValAsString(matchingAvps[avpIdx])) } } return outVal