diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 39080678..bbacc4c3 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -16,6 +16,7 @@ DanB David Wilkie Seyi Ogunyemi +Talha Tapio jaroszan mspronk diff --git a/diam/dict/util.go b/diam/dict/util.go index 787fa75a..38cf708b 100644 --- a/diam/dict/util.go +++ b/diam/dict/util.go @@ -124,7 +124,12 @@ retry: goto retry } else { if codeU32, isUint32 := code.(uint32); isUint32 { - return MakeUnknownAVP(origAppID, codeU32, vendorID), err + avp, err = p.FindAVP(origAppID, codeU32) + if err != nil { + return MakeUnknownAVP(origAppID, codeU32, vendorID), err + } + + return avp, nil } }