Skip to content

Commit

Permalink
Merge pull request #110 from cvs-go/feature#109
Browse files Browse the repository at this point in the history
북마크 상품 목록 조회 함수 수정
  • Loading branch information
feel-coding committed Jan 8, 2024
2 parents d0a287e + 905ac72 commit 6a31e1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public Long countByUserProductBookmark(User loginUser) {
return queryFactory.select(product.count())
.from(product)
.leftJoin(productBookmark)
.on(productBookmark.product.eq(product).and(productLikeUserEq(loginUser)))
.on(productBookmark.product.eq(product).and(productBookmarkUserEq(loginUser)))
.where(
product.in(
selectDistinct(sellAt.product)
Expand Down

0 comments on commit 6a31e1c

Please sign in to comment.