message-size-increase #3

Merged
sashakoshka merged 227 commits from message-size-increase into main 2025-09-07 19:27:38 -06:00
Showing only changes of commit aa718cfe9f - Show all commits

View File

@ -156,8 +156,10 @@ func decodeAny(decoder *Decoder, destination reflect.Value, tag Tag) (n int, err
n += nn; if err != nil { return n, err } n += nn; if err != nil { return n, err }
table.SetMapIndex(reflect.ValueOf(key), value) table.SetMapIndex(reflect.ValueOf(key), value)
} }
default:
return n, fmt.Errorf("unknown TN %d", tag.TN())
} }
return n, fmt.Errorf("unknown TN %d", tag.TN()) return n, nil
} }
// TagAny returns the correct tag for an "any" value. Returns an error if the // TagAny returns the correct tag for an "any" value. Returns an error if the