diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyLeaderboardExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyLeaderboardExe.java index 19f5e736..6ed91784 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyLeaderboardExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyLeaderboardExe.java @@ -56,6 +56,7 @@ public class FamilyLeaderboardExe { .map(FamilyMemberWeekExp::getFamilyMemberId) .collect(Collectors.toSet()); + userIds.add(cmd.getReqUserId()); Set hostUserIds = getHostUserIds(userIds); Map userProfileMap = userProfileGateway.mapByUserIds(userIds); diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyMemberTop100Exe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyMemberTop100Exe.java index b813c2ce..b3e9f82a 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyMemberTop100Exe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyMemberTop100Exe.java @@ -52,6 +52,7 @@ public class FamilyMemberTop100Exe { .map(FamilyMemberTotalExp::getFamilyMemberId) .collect(Collectors.toSet()); + userIds.add(cmd.getReqUserId()); Set hostUserIds = getHostUserIds(userIds); Map userProfileMap = userProfileGateway.mapByUserIds(userIds);