send animation as file
This commit is contained in:
parent
65bd93b242
commit
46810dab09
@ -1029,6 +1029,10 @@ func setAttachment(attachments *tgbotapi.Message, client *v1.MgClient, snd *v1.S
|
||||
|
||||
snd.Message.Type = v1.MsgTypeImage
|
||||
snd.Message.Note = attachments.Caption
|
||||
case "animation":
|
||||
fileID = attachments.Animation.FileID
|
||||
snd.Message.Type = v1.MsgTypeFile
|
||||
caption += ".mp4"
|
||||
case "document":
|
||||
fileID = attachments.Document.FileID
|
||||
snd.Message.Type = v1.MsgTypeFile
|
||||
@ -1052,7 +1056,7 @@ func setAttachment(attachments *tgbotapi.Message, client *v1.MgClient, snd *v1.S
|
||||
item := v1.Item{}
|
||||
fileUrl := fmt.Sprintf("https://api.telegram.org/file/bot%s/%s", botToken, file.FilePath)
|
||||
switch {
|
||||
case t == "sticker" || t == "voice":
|
||||
case t == "sticker" || t == "voice" || t == "animation":
|
||||
item, _, err = getItemData(
|
||||
client,
|
||||
fileUrl,
|
||||
|
@ -41,6 +41,8 @@ func getMessageID(data *tgbotapi.Message) string {
|
||||
return "audio"
|
||||
case data.Contact != nil:
|
||||
return "contact"
|
||||
case data.Animation != nil:
|
||||
return "animation"
|
||||
case data.Document != nil:
|
||||
return "document"
|
||||
case data.Location != nil:
|
||||
|
@ -39,6 +39,7 @@ audio: "[audio file]"
|
||||
contact: "[contact]"
|
||||
document: "[document]"
|
||||
location: "[location]"
|
||||
animation: "[animation]"
|
||||
video: "[video]"
|
||||
voice: "[voice message]"
|
||||
photo: "[photo]"
|
||||
|
@ -40,6 +40,7 @@ audio: "[archivo de audio]"
|
||||
contact: "[contacto]"
|
||||
document: "[documento]"
|
||||
location: "[localidad]"
|
||||
animation: "[animación]"
|
||||
video: "[video]"
|
||||
voice: "[mensaje de voz]"
|
||||
photo: "[foto]"
|
||||
|
@ -39,6 +39,7 @@ audio: "[аудио файл]"
|
||||
contact: "[контакт]"
|
||||
document: "[документ]"
|
||||
location: "[местонахождение]"
|
||||
animation: "[анимация]"
|
||||
video: "[видео]"
|
||||
voice: "[голосовое сообщение]"
|
||||
photo: "[изображение]"
|
||||
|
Loading…
Reference in New Issue
Block a user