From 0f5466e664d9273f669a02499ceb2672846637a5 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Sun, 6 Aug 2023 23:19:53 +0200 Subject: [PATCH] Update batch download --- src/bots/approved_bot/modules/download.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bots/approved_bot/modules/download.rs b/src/bots/approved_bot/modules/download.rs index 71345d9..b27463e 100644 --- a/src/bots/approved_bot/modules/download.rs +++ b/src/bots/approved_bot/modules/download.rs @@ -396,7 +396,7 @@ async fn get_download_archive_keyboard_handler( }; bot - .send_message(message.chat.id, "Выбери формат: \n (Функция тестируется и может работать нестабильно)") + .send_message(message.chat.id, "Выбери формат:") .reply_markup(keyboard) .reply_to_message_id(message.id) .await?; @@ -444,7 +444,7 @@ async fn download_archive( }; bot - .edit_message_text(message.chat.id, message.id, "Подготовка архива...") + .edit_message_text(message.chat.id, message.id, "⏳ Подготовка архива...") .reply_markup(InlineKeyboardMarkup { inline_keyboard: vec![], }) @@ -474,7 +474,7 @@ async fn download_archive( .edit_message_text( message.chat.id, message.id, - format!("Подготовка архива: {}", task.status_description) + format!("Статус: \n ⏳ {}", task.status_description) ) .reply_markup(InlineKeyboardMarkup { inline_keyboard: vec![],