diff options
author | xengineering <me@xengineering.eu> | 2023-05-21 13:00:58 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-05-21 13:00:58 +0200 |
commit | 37753409dc55da1a1cc3feed139f287a2d6215bb (patch) | |
tree | 63afb3226cae02f465d998f53f069021e407810a /xmpp/xmpp.go | |
parent | fd435f313610595114b86831354fa310394a840e (diff) | |
download | limox-37753409dc55da1a1cc3feed139f287a2d6215bb.tar limox-37753409dc55da1a1cc3feed139f287a2d6215bb.tar.zst limox-37753409dc55da1a1cc3feed139f287a2d6215bb.zip |
Implement SASL method parsing
Diffstat (limited to 'xmpp/xmpp.go')
-rw-r--r-- | xmpp/xmpp.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmpp/xmpp.go b/xmpp/xmpp.go index c0a52a0..5193f02 100644 --- a/xmpp/xmpp.go +++ b/xmpp/xmpp.go @@ -50,6 +50,7 @@ func Run(ch chan Event, jid string, pwd string) { case token := <-decoder.data: err = tr.route(token) if err != nil { + log.Println(err) return } } |