Skip to content

Commit

Permalink
fix: (TN) tags treatment in demux (#151)
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Fossati <[email protected]>
  • Loading branch information
thomas-fossati authored Nov 25, 2024
1 parent 941d98e commit dd9283d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion draft-ietf-rats-msg-wrap.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ func CMWTypeDemux(b []byte) (CMW, error) {

if b[0] == 0x82 || b[0] == 0x83 {
return CBORRecord
} else if b[0] >= 0xc0 && b[0] <= 0xdb {
} else if b[0] == 0xda {
return CBORTag
} else if b[0] == 0x5b {
return JSONRecord
Expand Down

0 comments on commit dd9283d

Please sign in to comment.