Fix pending update count check in webhook handling
Some checks are pending
Build docker image / Build-Docker-Image (push) Waiting to run

This commit is contained in:
2025-08-10 14:51:23 +02:00
parent 6b39a837ff
commit 28892d9fea

View File

@@ -174,7 +174,7 @@ impl BotsManager {
match result { match result {
Ok(webhook_info) => { Ok(webhook_info) => {
if webhook_info.pending_update_count != 0 { if webhook_info.pending_update_count == 0 {
continue; continue;
} }