Skip to content

Commit

Permalink
fix : 읽지 않은 북마크 조회 시, 삭제 여부 조건 판단
Browse files Browse the repository at this point in the history
  • Loading branch information
EunjiShin committed Oct 19, 2023
1 parent d5cc0d3 commit 6e4216a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ public List<Bookmark> findAllUnreadBookmark() {
notification.bookmarkId.eq(bookmark.id)
.and(notification.sendDateTime.goe(startDateTime))
.and(notification.sendDateTime.lt(endDateTime))
.and(notDeleted())
).notExists()
.and(bookmark.readByUser.eq(false))
)
Expand Down

0 comments on commit 6e4216a

Please sign in to comment.