Fix telegram photo/document input handling (telegram)

This commit is contained in:
Wim 2017-11-12 11:46:32 +01:00
parent bcdecdaa73
commit c0f9d86287
1 changed files with 2 additions and 3 deletions

View File

@ -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