Update client.go

This commit is contained in:
remicorniere 2019-12-24 10:47:25 +00:00 committed by GitHub
parent daf37cf5a8
commit e62b7fa0c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -207,6 +207,10 @@ func (c *Client) Resume(state SMState) error {
func (c *Client) Disconnect() { func (c *Client) Disconnect() {
// TODO : Wait for server response for clean disconnect // TODO : Wait for server response for clean disconnect
presence := stanza.NewPresence(stanza.Attrs{From: c.config.Jid})
presence.Type = stanza.PresenceTypeUnavailable
c.Send(presence)
c.SendRaw(stanza.StreamClose)
if c.transport != nil { if c.transport != nil {
_ = c.transport.Close() _ = c.transport.Close()
} }