Add support for telegram captions

pull/1707/head
Leko 2 years ago
parent 6a7412bf2b
commit ff0bc21062
No known key found for this signature in database
GPG Key ID: 3C6C437219A25483

@ -279,6 +279,10 @@ func (b *Btelegram) handleDownload(rmsg *config.Message, message *tgbotapi.Messa
text, name, url = b.getDownloadInfo(photos[len(photos)-1].FileID, "", true)
}
if message.Caption != "" {
text = message.Caption + "\n" + text
}
// if name is empty we didn't match a thing to download
if name == "" {
return nil

Loading…
Cancel
Save