diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/RankingListQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/RankingListQryExe.java index 2184a641..d9cb5773 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/RankingListQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/RankingListQryExe.java @@ -94,7 +94,7 @@ public class RankingListQryExe { co.setNickname("****"); co.setAvatar(enumConfigCacheService.getValue(EnumConfigKey.USER_YINSHEN_COVER, userProfileDTO.getSysOriginChild())); } else { - co.setAccount(userProfileDTO.getAccount()); + co.setAccount(userProfileDTO.getActualAccount()); co.setNickname(userProfileDTO.getUserNickname()); co.setAvatar(userProfileDTO.getUserAvatar()); } @@ -109,7 +109,7 @@ public class RankingListQryExe { currentUserRank = queryCurrentUserRank(cmd, rankingList); UserProfile userProfile = userProfileGateway.getByUserId(cmd.getReqUserId()); if (userProfile != null) { - currentUserRank.setAccount(userProfile.getAccount()); + currentUserRank.setAccount(userProfile.getActualAccount()); currentUserRank.setNickname(userProfile.getUserNickname()); currentUserRank.setAvatar(userProfile.getUserAvatar()); }