From c0f9d86287e052044f6e9f691ca34820685fe3ad Mon Sep 17 00:00:00 2001 From: Wim Date: Sun, 12 Nov 2017 11:46:32 +0100 Subject: [PATCH] Fix telegram photo/document input handling (telegram) --- bridge/telegram/telegram.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bridge/telegram/telegram.go b/bridge/telegram/telegram.go index fa493c2c..19d40c30 100644 --- a/bridge/telegram/telegram.go +++ b/bridge/telegram/telegram.go @@ -178,12 +178,11 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) { if message.Video != nil { b.handleDownload(message.Video, &fmsg) } - if message.Photo != nil && b.Config.UseInsecureURL { + if message.Photo != nil { b.handleDownload(message.Photo, &fmsg) } - if message.Document != nil && b.Config.UseInsecureURL { + if message.Document != nil { b.handleDownload(message.Sticker, &fmsg) - text = text + " " + message.Document.FileName + " : " + b.getFileDirectURL(message.Document.FileID) } // quote the previous message