From 72ce7f06e9bfc2a665f034f4099ed6eb79637f5c Mon Sep 17 00:00:00 2001 From: Wim Date: Sun, 6 May 2018 16:57:59 +0200 Subject: Handle file comment better --- bridge/xmpp/xmpp.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bridge/xmpp') diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index 54f54826..17cadf06 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -186,7 +186,10 @@ func (b *Bxmpp) handleUploadFile(msg *config.Message) (string, error) { msg.Text += fi.Comment + ": " } if fi.URL != "" { - msg.Text += fi.URL + msg.Text = fi.URL + if fi.Comment != "" { + msg.Text = fi.Comment + ": " + fi.URL + } } _, err := b.xc.Send(xmpp.Chat{Type: "groupchat", Remote: msg.Channel + "@" + b.GetString("Muc"), Text: msg.Username + msg.Text}) if err != nil { -- cgit v1.2.3