mirror of
https://github.com/FluuxIO/go-xmpp.git
synced 2026-05-24 04:43:47 -07:00
Remove checking for xml.Endelement in nextStart().
This seems to have negative side effects on parsing in next()
This commit is contained in:
@@ -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()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user