Close receiving of stanzas if io.EOF is received.

v0.10
Martin Dosch 2 months ago
parent 09e2423da4
commit c392eeb858
No known key found for this signature in database
GPG Key ID: 52A57CFCE13D657D

@ -47,8 +47,12 @@ func getIQ(id string, c chan xmpp.IQ, iqc chan xmpp.IQ) {
func rcvStanzas(client *xmpp.Client, iqc chan xmpp.IQ, msgc chan xmpp.Chat) {
for {
received, err := client.Recv()
if err != nil && err != io.EOF {
closeAndExit(client, err)
if err != nil {
if err != io.EOF {
closeAndExit(client, err)
return
}
return
}
switch v := received.(type) {
case xmpp.Chat:

Loading…
Cancel
Save