Do not try to get promo data before authorization.

GitOrigin-RevId: 404e4fad3802c37fb05df68d05035b9903f2eb33
This commit is contained in:
levlam 2020-08-16 10:17:46 +03:00
parent 3175e6680f
commit 2277557f52
1 changed files with 1 additions and 1 deletions

View File

@ -3190,7 +3190,7 @@ void Td::schedule_get_promo_data(int32 expires_in) {
if (expires_in > 86400) {
expires_in = 86400;
}
if (!close_flag_ && !auth_manager_->is_bot()) {
if (!close_flag_ && auth_manager_->is_authorized() && !auth_manager_->is_bot()) {
LOG(INFO) << "Schedule getPromoData in " << expires_in;
alarm_timeout_.set_timeout_in(PROMO_DATA_ALARM_ID, expires_in);
}