Fix leaking the user's phone in the id field of the stats.

Improves tdlight-team/tdlight-telegram-bot-api#48 a bit.
This commit is contained in:
luckydonald 2021-01-18 00:12:48 +01:00
parent df831c5907
commit 011b573a8e
1 changed files with 5 additions and 1 deletions

View File

@ -3670,7 +3670,11 @@ std::size_t Client::get_pending_update_count() const {
ServerBotInfo Client::get_bot_info() const {
ServerBotInfo res;
res.id_ = bot_token_id_;
if (is_user_) {
res.id_ = td::to_string(my_id_);
} else {
res.id_ = bot_token_id_;
}
res.token_ = bot_token_;
auto user_info = get_user_info(my_id_);
if (user_info != nullptr) {