Improve BotInfo for bots with invalid tokens.

This commit is contained in:
levlam 2023-01-18 22:44:47 +03:00
parent 82d592702d
commit 70428fb762
1 changed files with 5 additions and 1 deletions

View File

@ -4103,7 +4103,11 @@ ServerBotInfo Client::get_bot_info() const {
if (user_info != nullptr) {
res.username_ = user_info->editable_username;
} else if (!was_authorized_) {
res.username_ = "<unauthorized>";
if (logging_out_) {
res.username_ = "<failed to authorize>";
} else {
res.username_ = "<unauthorized>";
}
} else {
res.username_ = "<unknown>";
}