From a66471331ef78190ff1b9927254b7a92c52af70d Mon Sep 17 00:00:00 2001 From: "K. Isom" Date: Tue, 20 Apr 2021 13:53:36 -0700 Subject: [PATCH] Try to set online status. --- conn/xmpp/xmpp.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/conn/xmpp/xmpp.go b/conn/xmpp/xmpp.go index c0ee26a..d5f36de 100644 --- a/conn/xmpp/xmpp.go +++ b/conn/xmpp/xmpp.go @@ -69,6 +69,7 @@ func runClient(cfg *xmpp.Config) { logError(err) return } + SetOnline(cfg, client) // If you pass the client to a connection manager, it will handle the reconnect policy // for you automatically. @@ -76,3 +77,11 @@ func runClient(cfg *xmpp.Config) { log.Print(cm.Run()) } + +func SetOnline(cfg *xmpp.Config, client *xmpp.Client) { + pkt := stanza.NewPresence(stanza.Attrs{ + From: cfg.Jid, + }) + + client.Send(pkt) +}