From eda0474160bfc00a18a54f97f0c6e136686d6eaf Mon Sep 17 00:00:00 2001 From: Nulo Date: Sat, 27 Aug 2022 19:37:27 -0300 Subject: [PATCH] Mostrar el mensaje de que no encuentra links cuando realmente no encuentra links descargables --- main.go | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/main.go b/main.go index ea1a007..b7f0d04 100644 --- a/main.go +++ b/main.go @@ -40,12 +40,7 @@ func handleMessage(bot *tgbotapi.BotAPI, update tgbotapi.Update) { searchMsg = msg.ReplyToMessage } - if searchMsg.Entities == nil || len(searchMsg.Entities) < 1 { - if explicit { - bot.Send(respondWith(msg, "Ese mensaje no tiene ningĂșn link!")) - } - return - } + hasDownloadables := false for i := 0; i < len(searchMsg.Entities); i++ { e := searchMsg.Entities[i] @@ -68,6 +63,7 @@ func handleMessage(bot *tgbotapi.BotAPI, update tgbotapi.Update) { } return } + hasDownloadables = true log.Printf("Downloading %s", urlString) lookup, err := Lookup(urlString) @@ -89,6 +85,9 @@ func handleMessage(bot *tgbotapi.BotAPI, update tgbotapi.Update) { bot.Send(res) } + if !hasDownloadables && explicit { + bot.Send(respondWithMany(msg, "No encontrĂ© URLs descargables en ese mensaje.")) + } } func main() {