From bab308508e770e8f3fd7192a9e85e6abcfa03522 Mon Sep 17 00:00:00 2001 From: Wim Date: Wed, 21 Feb 2018 13:30:38 +0100 Subject: Fix the UseInsecureURL text (telegram). Closes #184 --- bridge/telegram/telegram.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bridge/telegram/telegram.go b/bridge/telegram/telegram.go index e411690c..a6826480 100644 --- a/bridge/telegram/telegram.go +++ b/bridge/telegram/telegram.go @@ -7,8 +7,8 @@ import ( "github.com/42wim/matterbridge/bridge/config" "github.com/42wim/matterbridge/bridge/helper" - log "github.com/sirupsen/logrus" "github.com/go-telegram-bot-api/telegram-bot-api" + log "github.com/sirupsen/logrus" ) type Btelegram struct { @@ -214,6 +214,11 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) { b.handleDownload(message.Audio, message.Caption, &fmsg) } + // If UseInsecureURL is used we'll have a text in fmsg.Text + if fmsg.Text != "" { + text = text + fmsg.Text + } + if message.ForwardFrom != nil { usernameForward := "" if b.Config.UseFirstName { -- cgit v1.2.3