From ab08250c1e830e13a0e702b594cf86671cc177c3 Mon Sep 17 00:00:00 2001 From: Nulo Date: Wed, 4 Jan 2023 12:56:19 -0300 Subject: [PATCH] instagram: No enviar la caption del video --- instagram/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instagram/main.go b/instagram/main.go index 975f5b1..b13f31a 100644 --- a/instagram/main.go +++ b/instagram/main.go @@ -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 }