aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBohdan Horbeshko <bodqhrohro@gmail.com>2022-02-13 20:33:43 +0300
committerBohdan Horbeshko <bodqhrohro@gmail.com>2022-02-13 20:33:43 +0300
commit2bf4c6666ea7a9703ca1c70ca555bc4b13dfbf21 (patch)
tree6fde9b3c489fa41d7b8d6328b4fad55d54b189b9
parent1e83d54107008ecb9b0f60c822bb146cc07f104b (diff)
Fix initializing a TDlib instance after subscribing to the transport
-rw-r--r--xmpp/handlers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp/handlers.go b/xmpp/handlers.go
index bb80bb0..6f8c877 100644
--- a/xmpp/handlers.go
+++ b/xmpp/handlers.go
@@ -188,7 +188,7 @@ func handlePresence(s xmpp.Sender, p stanza.Presence) {
case "unavailable", "error":
session.Disconnect(resource, false)
// go online
- case "probe", "", "online":
+ case "probe", "", "online", "subscribe":
// due to the weird implementation of go-tdlib wrapper, it won't
// return the client instance until successful authorization
go func() {