Commit f9708c87 by 段启岩

动态删除修复

parent 522d5d85
......@@ -196,7 +196,7 @@ public class UserFollowServiceImpl extends ServiceImpl<UserFollowMapper, UserFol
if (!CollectionUtils.isEmpty(userFollowList)) {
// 取出我的粉丝的ID
List<String> fanUserIds = userFollowList.stream()
.map(UserFollow::getFollowedId).collect(Collectors.toList());
.map(UserFollow::getFollowerId).collect(Collectors.toList());
// 查询我的粉丝的统计信息
List<UserStatistics> userStatisticsList = userStatisticsService.listByIds(fanUserIds);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment