From b04fcffcd89c584ab79df572a8d8d17fe4bd5988 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Fri, 23 Dec 2022 16:58:38 +0100 Subject: [PATCH] Fix annotations --- src/bots/approved_bot/modules/annotations.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bots/approved_bot/modules/annotations.rs b/src/bots/approved_bot/modules/annotations.rs index 54846d4..75d9cc8 100644 --- a/src/bots/approved_bot/modules/annotations.rs +++ b/src/bots/approved_bot/modules/annotations.rs @@ -239,6 +239,7 @@ where match bot .send_message(message.chat.id, current_text) + .parse_mode(ParseMode::Html) .reply_markup(keyboard) .send() .await @@ -290,6 +291,7 @@ where match bot .edit_message_text(message.chat.id, message.id, current_text) + .parse_mode(ParseMode::Html) .reply_markup(keyboard) .send() .await