From 75c92c14e8808558a28d419af6ace903fec407eb Mon Sep 17 00:00:00 2001 From: Yogesh Deshpande Date: Thu, 18 Apr 2024 07:07:00 -0400 Subject: [PATCH] [WIP] Corrections Signed-off-by: Yogesh Deshpande --- comid/instance.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/comid/instance.go b/comid/instance.go index 1c1383fd..87338931 100644 --- a/comid/instance.go +++ b/comid/instance.go @@ -146,6 +146,8 @@ func (o Instance) GetUEID() (eat.UEID, error) { switch t := o.Value.(type) { case TaggedUEID: return eat.UEID(t), nil + case *TaggedUEID: + return eat.UEID(*t), nil default: return eat.UEID{}, fmt.Errorf("instance-id type is: %T", t) }