summaryrefslogtreecommitdiffstats
path: root/bridge
diff options
context:
space:
mode:
Diffstat (limited to 'bridge')
-rw-r--r--bridge/telegram/telegram.go5
1 files 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