Merge pull request #68 from DmitryZagorulko/master
correct file caption
This commit is contained in:
commit
02bfad6ad3
@ -923,6 +923,7 @@ func photoMessage(items []v1.FileItem, mgClient *v1.MgClient, cid int64) (chatta
|
|||||||
msg := tgbotapi.NewPhotoUpload(cid, nil)
|
msg := tgbotapi.NewPhotoUpload(cid, nil)
|
||||||
msg.FileID = file.Url
|
msg.FileID = file.Url
|
||||||
msg.UseExisting = true
|
msg.UseExisting = true
|
||||||
|
msg.Caption = v[0].Caption
|
||||||
|
|
||||||
chattable = msg
|
chattable = msg
|
||||||
} else if len(items) > 1 {
|
} else if len(items) > 1 {
|
||||||
@ -939,6 +940,7 @@ func photoMessage(items []v1.FileItem, mgClient *v1.MgClient, cid int64) (chatta
|
|||||||
}
|
}
|
||||||
|
|
||||||
ip := tgbotapi.NewInputMediaPhoto(file.Url)
|
ip := tgbotapi.NewInputMediaPhoto(file.Url)
|
||||||
|
ip.Caption = v.Caption
|
||||||
it = append(it, ip)
|
it = append(it, ip)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1007,7 +1009,7 @@ func setAttachment(attachments *tgbotapi.Message, client *v1.MgClient, snd *v1.S
|
|||||||
}
|
}
|
||||||
|
|
||||||
snd.Message.Type = v1.MsgTypeImage
|
snd.Message.Type = v1.MsgTypeImage
|
||||||
caption = getLocalizedMessage(t)
|
caption = attachments.Caption
|
||||||
case "document":
|
case "document":
|
||||||
fileID = attachments.Document.FileID
|
fileID = attachments.Document.FileID
|
||||||
snd.Message.Type = v1.MsgTypeFile
|
snd.Message.Type = v1.MsgTypeFile
|
||||||
@ -1015,7 +1017,7 @@ func setAttachment(attachments *tgbotapi.Message, client *v1.MgClient, snd *v1.S
|
|||||||
case "sticker":
|
case "sticker":
|
||||||
fileID = attachments.Sticker.FileID
|
fileID = attachments.Sticker.FileID
|
||||||
snd.Message.Type = v1.MsgTypeImage
|
snd.Message.Type = v1.MsgTypeImage
|
||||||
caption = getLocalizedMessage(t)
|
caption = attachments.Caption
|
||||||
default:
|
default:
|
||||||
snd.Message.Text = getLocalizedMessage(t)
|
snd.Message.Text = getLocalizedMessage(t)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user