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/irc/irc.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bridge/irc') diff --git a/bridge/irc/irc.go b/bridge/irc/irc.go index ccaf0276..83184008 100644 --- a/bridge/irc/irc.go +++ b/bridge/irc/irc.go @@ -201,6 +201,9 @@ func (b *Birc) Send(msg config.Message) (string, error) { } if fi.URL != "" { msg.Text = fi.URL + if fi.Comment != "" { + msg.Text = fi.Comment + ": " + fi.URL + } } b.Local <- config.Message{Text: msg.Text, Username: msg.Username, Channel: msg.Channel, Event: msg.Event} } -- cgit v1.2.3