Improve BotInfo for bots with invalid tokens.

This commit is contained in:
levlam 2023-01-18 22:44:47 +03:00
parent 61f1e7d114
commit 11dcbb0431

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>";
}