Upstream merge: logout is invalid api id

This commit is contained in:
Giuseppe Marino 2021-03-16 20:24:58 +01:00
parent 0099943611
commit ff7d232f42
No known key found for this signature in database
GPG Key ID: 2BC70C5463357449
1 changed files with 2 additions and 2 deletions

View File

@ -2703,7 +2703,7 @@ class Client::TdOnAuthorizationQueryCallback : public TdQueryCallback {
fail_query(401, "Unauthorized: Log in failed, logging out due to " + td::oneline(to_string(error)),
std::move(query_));
LOG(WARNING) << "Logging out due to " << td::oneline(to_string(error));
client_->log_out();
client_->log_out(false);
} else {
if (client_->authorization_state_->get_id() == td_api::authorizationStateWaitRegistration::ID &&
!client_->parameters_->allow_users_registration_) {
@ -2711,7 +2711,7 @@ class Client::TdOnAuthorizationQueryCallback : public TdQueryCallback {
"Unauthorized: It is not allowed to register users with this api. You can enable it with the "
"command line option --allow-users-registration. Logging out",
std::move(query_));
return client_->log_out();
return client_->log_out(false);
}
if (send_token_) {
answer_query(JsonAuthorizationState(client_->authorization_state_.get(), client_->bot_token_), std::move(query_));