Ignore internal setWebhook queries in flood-control.

This commit is contained in:
levlam 2021-06-14 04:11:15 +03:00
parent 05bbc55569
commit 084aa2a6f3

View File

@ -7579,7 +7579,7 @@ td::Status Client::process_set_webhook_query(PromisedQueryPtr &query) {
} }
auto now = td::Time::now_cached(); auto now = td::Time::now_cached();
if (!new_url.empty()) { if (!new_url.empty() && !query->is_internal()) {
if (now < next_allowed_set_webhook_time_) { if (now < next_allowed_set_webhook_time_) {
query->set_retry_after_error(1); query->set_retry_after_error(1);
return Status::OK(); return Status::OK();