Skip to content

Commit

Permalink
hotfix: 타임라인 조회 시 응원 개수가 제대로 카운트 되지 않는 이슈 해결 (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
penrose15 committed Sep 13, 2024
1 parent c347042 commit fa53bdc
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ public List<ReactionCount> getAllCountByMemoryIds(List<Long> memoryIds) {
.from(reactionEntity)
.join(reactionEntity.memory, memoryEntity)
.where(memoryEntity.id.in(memoryIds))
.groupBy(memoryEntity.id)
.fetch();
}

Expand Down

0 comments on commit fa53bdc

Please sign in to comment.