mirror of
https://github.com/42wim/matterbridge
synced 2024-11-19 03:25:33 +00:00
Add webp extension to stickers if necessary (telegram)
This commit is contained in:
parent
2fd1fd9573
commit
98762a0235
@ -229,6 +229,9 @@ func (b *Btelegram) handleDownload(file interface{}, msg *config.Message) {
|
||||
url = b.getFileDirectURL(v.FileID)
|
||||
urlPart := strings.Split(url, "/")
|
||||
name = urlPart[len(urlPart)-1]
|
||||
if !strings.HasSuffix(name, ".webp") {
|
||||
name = name + ".webp"
|
||||
}
|
||||
text = " " + url
|
||||
fileid = v.FileID
|
||||
case *tgbotapi.Video:
|
||||
|
Loading…
Reference in New Issue
Block a user