Merge 3c3232cdcab174cff5049fd3c80ef2f7289ca530 into dcaa4296d111981ffb31ac3eba90bb63e1eb5ab9

This commit is contained in:
Anupam Mediratta 2026-08-19 08:56:25 -07:00 committed by GitHub
commit 7d493b410c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,6 +27,7 @@ func (xmlBinding) BindBody(body []byte, obj any) error {
func decodeXML(r io.Reader, obj any) error {
decoder := xml.NewDecoder(r)
decoder.Entity = map[string]string{}
if err := decoder.Decode(obj); err != nil {
return err
}