Better function names.
GitOrigin-RevId: 7f263a23e4fbc2da9715605599fbb06a3049b9ea
This commit is contained in:
parent
3377c38073
commit
ae574ceebc
@ -5738,7 +5738,7 @@ void ContactsManager::on_get_user(tl_object_ptr<telegram_api::User> &&user_ptr,
|
|||||||
u->is_deleted = is_deleted;
|
u->is_deleted = is_deleted;
|
||||||
|
|
||||||
if (u->is_deleted) {
|
if (u->is_deleted) {
|
||||||
invalidate_user_full(user_id);
|
drop_user_full(user_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG(DEBUG) << "User.is_deleted has changed for " << user_id;
|
LOG(DEBUG) << "User.is_deleted has changed for " << user_id;
|
||||||
@ -7917,7 +7917,7 @@ void ContactsManager::on_update_user_links(User *u, UserId user_id, LinkState ou
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ContactsManager::invalidate_user_full(UserId user_id) {
|
void ContactsManager::drop_user_full(UserId user_id) {
|
||||||
auto user_full = get_user_full(user_id);
|
auto user_full = get_user_full(user_id);
|
||||||
if (user_full == nullptr) {
|
if (user_full == nullptr) {
|
||||||
return;
|
return;
|
||||||
@ -8038,7 +8038,7 @@ void ContactsManager::on_get_chat_participants(tl_object_ptr<telegram_api::ChatP
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (from_update) {
|
if (from_update) {
|
||||||
invalidate_chat_full(chat_id);
|
drop_chat_full(chat_id);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -9000,7 +9000,7 @@ void ContactsManager::on_update_chat_status(Chat *c, ChatId chat_id, DialogParti
|
|||||||
c->default_permissions_version = -1;
|
c->default_permissions_version = -1;
|
||||||
c->pinned_message_version = -1;
|
c->pinned_message_version = -1;
|
||||||
|
|
||||||
invalidate_chat_full(chat_id);
|
drop_chat_full(chat_id);
|
||||||
}
|
}
|
||||||
if (drop_invite_link) {
|
if (drop_invite_link) {
|
||||||
auto it = chat_invite_links_.find(chat_id);
|
auto it = chat_invite_links_.find(chat_id);
|
||||||
@ -9263,7 +9263,7 @@ void ContactsManager::on_update_chat_full_participants(ChatFull *chat_full, Chat
|
|||||||
update_chat_online_member_count(chat_full, chat_id, true);
|
update_chat_online_member_count(chat_full, chat_id, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ContactsManager::invalidate_chat_full(ChatId chat_id) {
|
void ContactsManager::drop_chat_full(ChatId chat_id) {
|
||||||
ChatFull *chat_full = get_chat_full(chat_id);
|
ChatFull *chat_full = get_chat_full(chat_id);
|
||||||
if (chat_full == nullptr) {
|
if (chat_full == nullptr) {
|
||||||
auto it = chat_invite_links_.find(chat_id);
|
auto it = chat_invite_links_.find(chat_id);
|
||||||
|
@ -562,7 +562,7 @@ class ContactsManager : public Actor {
|
|||||||
void parse(ParserT &parser);
|
void parse(ParserT &parser);
|
||||||
};
|
};
|
||||||
|
|
||||||
// do not forget to update invalidate_user_full and on_get_user_full
|
// do not forget to update drop_user_full and on_get_user_full
|
||||||
struct UserFull {
|
struct UserFull {
|
||||||
vector<Photo> photos;
|
vector<Photo> photos;
|
||||||
int32 photo_count = -1;
|
int32 photo_count = -1;
|
||||||
@ -955,7 +955,7 @@ class ContactsManager : public Actor {
|
|||||||
void on_update_user_full_common_chat_count(UserFull *user_full, UserId user_id, int32 common_chat_count);
|
void on_update_user_full_common_chat_count(UserFull *user_full, UserId user_id, int32 common_chat_count);
|
||||||
bool on_update_user_full_bot_info(UserFull *user_full, UserId user_id, int32 bot_info_version,
|
bool on_update_user_full_bot_info(UserFull *user_full, UserId user_id, int32 bot_info_version,
|
||||||
tl_object_ptr<telegram_api::botInfo> &&bot_info);
|
tl_object_ptr<telegram_api::botInfo> &&bot_info);
|
||||||
void invalidate_user_full(UserId user_id);
|
void drop_user_full(UserId user_id);
|
||||||
|
|
||||||
void on_update_chat_status(Chat *c, ChatId chat_id, DialogParticipantStatus status);
|
void on_update_chat_status(Chat *c, ChatId chat_id, DialogParticipantStatus status);
|
||||||
void on_update_chat_default_permissions(Chat *c, ChatId chat_id, RestrictedRights default_permissions, int32 version);
|
void on_update_chat_default_permissions(Chat *c, ChatId chat_id, RestrictedRights default_permissions, int32 version);
|
||||||
@ -991,7 +991,7 @@ class ContactsManager : public Actor {
|
|||||||
void speculative_add_channel_user(ChannelId channel_id, UserId user_id, DialogParticipantStatus new_status,
|
void speculative_add_channel_user(ChannelId channel_id, UserId user_id, DialogParticipantStatus new_status,
|
||||||
DialogParticipantStatus old_status);
|
DialogParticipantStatus old_status);
|
||||||
|
|
||||||
void invalidate_chat_full(ChatId chat_id);
|
void drop_chat_full(ChatId chat_id);
|
||||||
|
|
||||||
void update_user_online_member_count(User *u);
|
void update_user_online_member_count(User *u);
|
||||||
void update_chat_online_member_count(const ChatFull *chat_full, ChatId chat_id, bool is_from_server);
|
void update_chat_online_member_count(const ChatFull *chat_full, ChatId chat_id, bool is_from_server);
|
||||||
|
Loading…
Reference in New Issue
Block a user