diff options
Diffstat (limited to 'xmpp')
-rw-r--r-- | xmpp/handlers.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmpp/handlers.go b/xmpp/handlers.go index 31c2b27..971ac86 100644 --- a/xmpp/handlers.go +++ b/xmpp/handlers.go @@ -236,8 +236,8 @@ func handlePresence(s xmpp.Sender, p stanza.Presence) { delete(sessions, bareFromJid) case "unavailable", "error": session.Disconnect() - case "", "online": - // due to the weird implentation of go-tdlib wrapper, it won't + case "probe", "", "online": + // due to the weird implementation of go-tdlib wrapper, it won't // return the client instance until successful authorization go func() { err = session.Connect() |