This commit is contained in:
aozhiwei 2020-06-24 23:21:35 +08:00
parent 20a78a098d
commit 70a1d41419

View File

@ -130,11 +130,15 @@ void PlayerMgr::_SS_IM_PushUserOnlineState(f8::MsgHdr& hdr, const ss::SS_IM_Push
if (itr != watch_players_.end()) {
struct Friend *node, *tmp;
list_for_each_entry_safe(node, tmp, &itr->second, watch_node) {
#if 0
if (!node->base_data.online) {
#endif
TypeConvert::Convert(user_info.base_data(), node->base_data);
TypeConvert::Convert(user_info.temp_custom_data(), node->temp_custom_data);
node->hum->NotifyUserInfoUpdate(node);
#if 0
}
#endif
}
}
}