Skip to content

Commit

Permalink
[hotfix] fix: 댓글 리스트 조회 쿼리 내 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jin.geonwoo committed Nov 24, 2024
1 parent 36eac73 commit 76b124e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public List<Comment> findAllByNoteId(Long noteId, Long userId) {
JPAExpressions
.select(block.blocked.id)
.from(block)
.where(block.blocker.id.eq(userId))
.where(block.blocker.id.eq(userId).and(block.deletedAt.isNull()))
)
)
.orderBy(comment.id.asc())
Expand Down

0 comments on commit 76b124e

Please sign in to comment.