Skip to content

Commit 822962c

Browse files
Merge pull request #112 from veraison/comid-fixes
Minor corrections to GetUEID()
2 parents e6e47e5 + 2335846 commit 822962c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

comid/instance.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ func (o Instance) GetUEID() (eat.UEID, error) {
146146
switch t := o.Value.(type) {
147147
case TaggedUEID:
148148
return eat.UEID(t), nil
149+
case *TaggedUEID:
150+
return eat.UEID(*t), nil
149151
default:
150152
return eat.UEID{}, fmt.Errorf("instance-id type is: %T", t)
151153
}

0 commit comments

Comments
 (0)