From 7218ff125e9df9934eace90e13f61d280ddf0f59 Mon Sep 17 00:00:00 2001 From: tytan652 Date: Tue, 13 Jul 2021 16:06:12 +0200 Subject: [PATCH] Fix XMPP parseNick function --- bridge/xmpp/xmpp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index 89a48742..07ae8a28 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -385,7 +385,7 @@ func (b *Bxmpp) handleUploadFile(msg *config.Message) error { func (b *Bxmpp) parseNick(remote string) string { s := strings.Split(remote, "@") - if len(s) > 0 { + if len(s) > 1 { s = strings.Split(s[1], "/") if len(s) == 2 { return s[1] // nick