Skip to content

Commit

Permalink
CBOR Record ID Unmarshal to any (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRangiCrew authored Oct 29, 2024
1 parent f98f67e commit f8d60dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/models/record_id.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (r *RecordID) UnmarshalCBOR(data []byte) error {
}

r.Table = temp[0].(string)
r.ID = temp[1].(string)
r.ID = temp[1]

return nil
}
Expand Down

0 comments on commit f8d60dd

Please sign in to comment.