Now properly answering the callback query

This commit is contained in:
StNicolay 2023-07-16 00:35:29 +03:00
parent e311e33c6d
commit 1f016a3694
Signed by: StNicolay
GPG Key ID: 9693D04DCD962B0D

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(())
} }