From 53547a9724263c00b1a04e7b7538e3828c47d623 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Wed, 27 May 2026 19:06:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E6=8E=92=E8=A1=8C=E6=A6=9C?= =?UTF-8?q?=20=20=E6=98=BE=E7=A4=BA=E9=9D=93=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/app/command/activity/query/RankingListQryExe.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()); }