Get rid of CDATA around RSM first element content

This commit is contained in:
Bohdan Horbeshko 2025-08-23 07:32:19 -04:00 committed by Mickaël Rémond
parent 4073f34461
commit 9b815bbbcb

View File

@ -24,6 +24,6 @@ type ResultSet struct {
type First struct {
XMLName xml.Name `xml:"first"`
Content string `xml:",cdata"`
Content string `xml:",chardata"`
Index *int `xml:"index,attr,omitempty"`
}