From 2b83114148ab67d1d99305d331c706f7bc7ab531 Mon Sep 17 00:00:00 2001 From: Nulo Date: Wed, 21 Jun 2023 21:08:33 -0300 Subject: [PATCH] no usar parsemode markdown MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit aparentemente el markdown de telegram tira errores (?) cuando tenés guiones bajos sin "cerrar" --- main.go | 1 - 1 file changed, 1 deletion(-) diff --git a/main.go b/main.go index fea0bff..9f3a534 100644 --- a/main.go +++ b/main.go @@ -169,7 +169,6 @@ func respondWith(msg *tgbotapi.Message, str string) tgbotapi.MessageConfig { res := tgbotapi.NewMessage(msg.Chat.ID, str) res.ReplyToMessageID = msg.MessageID res.DisableWebPagePreview = true - res.ParseMode = "markdown" return res }