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

View File

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