Improve BotInfo for bots with invalid tokens.
This commit is contained in:
parent
82d592702d
commit
70428fb762
1 changed files with 5 additions and 1 deletions
|
|
@ -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>";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue