mirror of
https://github.com/tdlight-team/tdlight-telegram-bot-api.git
synced 2024-12-28 21:55:51 +01:00
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:
parent
df831c5907
commit
011b573a8e
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user