From ac0a1827c13f39fdcdfcaca22605cbc3e40a3b3c Mon Sep 17 00:00:00 2001 From: Nulo Date: Tue, 16 May 2023 23:33:40 -0300 Subject: [PATCH] fallar si no es 200 --- main.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.go b/main.go index 0b45eda..30b0935 100644 --- a/main.go +++ b/main.go @@ -8,6 +8,7 @@ import ( "os" "strings" "unicode/utf16" + "errors" tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5" "nulo.in/dlbot/common" @@ -30,6 +31,9 @@ func (fu FileURL) UploadData() (string, io.Reader, error) { if err != nil { return "", nil, err } + if res.StatusCode != http.StatusOK { + return "", nil, errors.New(res.Status) + } return "url.mp4", res.Body, nil } @@ -90,6 +94,7 @@ func (config Config) handleMessage(bot *tgbotapi.BotAPI, update tgbotapi.Update) _, err := bot.Send(res) if err != nil { log.Println("Error subiendo", url.String(), err) + bot.Send(respondWithMany(update.Message, "Hubo un error al descargar ", url.String(), ".")) } }