summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-11-12 11:46:32 +0100
committerWim <wim@42.be>2017-11-12 11:46:32 +0100
commitc0f9d86287e052044f6e9f691ca34820685fe3ad (patch)
tree56e3f660bc42a5d9e9a7582f53b6e1b472321ef3
parentbcdecdaa73531464084b060f2777887befc0382d (diff)
downloadmatterbridge-msglm-c0f9d86287e052044f6e9f691ca34820685fe3ad.tar.gz
matterbridge-msglm-c0f9d86287e052044f6e9f691ca34820685fe3ad.tar.bz2
matterbridge-msglm-c0f9d86287e052044f6e9f691ca34820685fe3ad.zip
Fix telegram photo/document input handling (telegram)
-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