Skip to content

Commit

Permalink
fix : 댓글 갯수 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
nohy6630 committed Jun 6, 2024
1 parent e681b20 commit 388121a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public Map<Long, Long> findCommentCountByArticleIdIn(Set<Long> articleIds) {

HashMap<Long, Long> result = new HashMap<>();
for (Tuple tuple : tuples) {
result.put(tuple.get(article.id), tuple.get(commentEntity.count()));
result.put(tuple.get(0, Long.class), tuple.get(1, Long.class));
}
return result;
}
Expand Down

0 comments on commit 388121a

Please sign in to comment.