From 905ac72bd17d39c79c75af85de77a6e02a19ad51 Mon Sep 17 00:00:00 2001 From: chaewss Date: Wed, 3 Jan 2024 00:36:07 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=B6=81=EB=A7=88=ED=81=AC=20=EC=83=81?= =?UTF-8?q?=ED=92=88=20=EB=AA=A9=EB=A1=9D=20=EC=A1=B0=ED=9A=8C=20=ED=95=A8?= =?UTF-8?q?=EC=88=98=20=EC=88=98=EC=A0=95=20#109?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/cvsgo/repository/ProductCustomRepositoryImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/cvsgo/repository/ProductCustomRepositoryImpl.java b/src/main/java/com/cvsgo/repository/ProductCustomRepositoryImpl.java index b08ab762..bb80afdb 100644 --- a/src/main/java/com/cvsgo/repository/ProductCustomRepositoryImpl.java +++ b/src/main/java/com/cvsgo/repository/ProductCustomRepositoryImpl.java @@ -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)