Fix
Some checks are pending
Build docker image / Build-Docker-Image (push) Waiting to run

This commit is contained in:
2025-08-09 23:18:10 +02:00
parent 34f0c9feb6
commit 13612062ad

View File

@@ -60,5 +60,7 @@ pub async fn support_command_handler(
pub fn get_support_handler() -> crate::bots::BotHandler {
Update::filter_message()
.filter_command::<SupportCommand>()
.endpoint(support_command_handler)
.endpoint(|message: Message, bot: CacheMe<Throttle<Bot>>| async move {
support_command_handler(message, &bot).await
})
}