diff options
-rw-r--r-- | bridge/xmpp/xmpp.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |