Remove checking for xml.Endelement in nextStart().

This seems to have negative side effects on parsing in next()
This commit is contained in:
Martin Dosch 2024-04-02 15:48:34 +02:00
parent 0ae62a33a2
commit 6e5d6e449e

View File

@ -1537,14 +1537,6 @@ func (c *Client) nextStart() (xml.StartElement, error) {
case xml.StartElement:
c.nextMutex.Unlock()
return t, nil
// Also check for stream end element and stop waiting
// for new start elements if we received a closing stream
// element.
case xml.EndElement:
if t.Name.Local == "stream" {
c.nextMutex.Unlock()
return xml.StartElement{}, nil
}
}
c.nextMutex.Unlock()
}