Now properly answering the callback query

This commit is contained in:
2023-07-16 00:35:29 +03:00
parent e311e33c6d
commit 1f016a3694

View File

@ -10,6 +10,7 @@ async fn run(bot: Throttle<Bot>, q: CallbackQuery) -> crate::Result<()> {
.await?; .await?;
} }
} }
bot.answer_callback_query(q.id).await?;
Ok(()) Ok(())
} }