go-dash icon indicating copy to clipboard operation
go-dash copied to clipboard

InbandEventStream should be an element, slice

Open bdstark opened this issue 5 years ago • 0 comments

CommonAttributesAndElements.InbandEventStream has an XML tag to be an attribute, but should be an element:

InbandEventStream         *DescriptorType       `xml:"inbandEventStream,attr"`

should be

InbandEventStream         *DescriptorType       `xml:"InbandEventStream,omitempty"`

otherwise it will never be unmarshaled.

I think is is valid to have multiple InbandEventStream elements, which would need more than just this fix.

InbandEventStream         []DescriptorType      `xml:"InbandEventStream,omitempty"`

bdstark avatar Jul 14 '20 23:07 bdstark