From 7764493298760ec8d33f5387ea2fb6c4705a407e Mon Sep 17 00:00:00 2001 From: Wim Date: Thu, 1 Feb 2018 00:41:09 +0100 Subject: Add comment to file upload from telegram. Show comments on all bridges. Closes #358 --- bridge/sshchat/sshchat.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bridge/sshchat') diff --git a/bridge/sshchat/sshchat.go b/bridge/sshchat/sshchat.go index 81e83244..7b008fe0 100644 --- a/bridge/sshchat/sshchat.go +++ b/bridge/sshchat/sshchat.go @@ -65,6 +65,9 @@ func (b *Bsshchat) Send(msg config.Message) (string, error) { if len(msg.Extra["file"]) > 0 { for _, f := range msg.Extra["file"] { fi := f.(config.FileInfo) + if fi.Comment != "" { + msg.Text += fi.Comment + ":" + } if fi.URL != "" { msg.Text = fi.URL } -- cgit v1.2.3