Allow faster reopen for bots that were successfully authorized.
This commit is contained in:
parent
983abbf6b6
commit
efcca904e6
1 changed files with 2 additions and 2 deletions
|
|
@ -6353,9 +6353,9 @@ void Client::finish_closing() {
|
|||
|
||||
auto timeout = [&] {
|
||||
if (next_authorization_time_ <= 0.0) {
|
||||
return 600.0;
|
||||
return was_authorized_ && authorization_date_ < get_unix_time() - 1800 ? 1.0 : 1800.0;
|
||||
}
|
||||
return td::min(next_authorization_time_ - td::Time::now(), 600.0);
|
||||
return td::min(next_authorization_time_ - td::Time::now(), 1800.0);
|
||||
}();
|
||||
set_timeout_in(timeout);
|
||||
LOG(INFO) << "Keep client opened for " << timeout << " seconds";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue