instagram: No enviar la caption del video

This commit is contained in:
Cat /dev/Nulo 2023-01-04 12:56:19 -03:00
parent 7a86496fa7
commit ab08250c1e

View file

@ -28,7 +28,7 @@ func respond(bot *tgbotapi.BotAPI, update tgbotapi.Update, url *url.URL) common.
res := tgbotapi.NewVideo(update.Message.Chat.ID, tgbotapi.FileURL(lookup.VideoUrl))
res.ReplyToMessageID = update.Message.MessageID
res.Caption = "@" + lookup.Author + ": " + lookup.Text
res.Caption = "@" + lookup.Author
bot.Send(res)
return common.Uploaded
}