From 1488321574294e4285de481f1fbd089afad2ff1b Mon Sep 17 00:00:00 2001 From: Edoardo Rosa <6991986+notdodo@users.noreply.github.com> Date: Sun, 20 Oct 2024 22:18:54 +0200 Subject: [PATCH] chore: fix escaping --- app/bot/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/bot/src/main.rs b/app/bot/src/main.rs index 6031ce0..b866f27 100644 --- a/app/bot/src/main.rs +++ b/app/bot/src/main.rs @@ -100,7 +100,6 @@ fn escape_markdown_v2(text: &str) -> String { .replace("(", "\\(") .replace(")", "\\)") .replace("~", "\\~") - .replace("`", "\\`") .replace(">", "\\>") .replace("#", "\\#") .replace("+", "\\+") @@ -134,7 +133,7 @@ async fn base_commands_handler( BaseCommand::Stazioni => station::stations().join("\n"), BaseCommand::Info => { let info = "Bot Telegram che permette di leggere i livello idrometrici dei fiumi dell'Emilia Romagna \ - I dati idrometrici sono ottenuti dalle API messe a disposizione da allertameteo.regione.emilia-romagn.i.\n\n\ + I dati idrometrici sono ottenuti dalle API messe a disposizione da allertameteo.regione.emilia-romagna.it\n\n\ Il progetto รจ completamente open-source (https://github.com/notdodo/erfiume_bot).\n\ Per donazioni per mantenere il servizio attivo: buymeacoffee.com/d0d0\n\n\ Inizia con /start o /stazioni";