fix:修复公聊-用户头像字段-读取错误问题

This commit is contained in:
max
2024-05-15 19:29:21 +08:00
parent 70040c5ee1
commit cab220d917

View File

@@ -665,7 +665,7 @@ public class UserInfo implements Serializable {
map = new HashMap<>();
}
map.put(NICK, userInfo.getNick());
map.put(AVATAR, userInfo.getNewAvatar());
map.put(AVATAR, userInfo.getAvatar());
map.put(GENDER, userInfo.getGender());
map.put(IS_OFFICIAL, userInfo.getDefUser() == USER_TYPE_OFFICIAL);
map.put(IS_NEW_USER, isNewUser());