Skip to content

Commit

Permalink
chore: fix escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
notdodo committed Oct 20, 2024
1 parent a99700f commit 1488321
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/bot/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ fn escape_markdown_v2(text: &str) -> String {
.replace("(", "\\(")
.replace(")", "\\)")
.replace("~", "\\~")
.replace("`", "\\`")
.replace(">", "\\>")
.replace("#", "\\#")
.replace("+", "\\+")
Expand Down Expand Up @@ -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";
Expand Down

0 comments on commit 1488321

Please sign in to comment.