From 556e21c68abde3874c1679ed2edcf250c1db4ca0 Mon Sep 17 00:00:00 2001 From: bongsh0112 Date: Mon, 15 Jan 2024 11:18:09 +0900 Subject: [PATCH] =?UTF-8?q?edit=20:=20=ED=81=AC=EB=A1=A4=EB=A7=81=20?= =?UTF-8?q?=EA=B4=80=EB=A0=A8=20=EB=A1=9C=EC=A7=81=20=EC=88=98=EC=A0=95=20?= =?UTF-8?q?#148?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domains/product/repository/ProductCustomRepositoryImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Domain/src/main/java/tify/server/domain/domains/product/repository/ProductCustomRepositoryImpl.java b/Domain/src/main/java/tify/server/domain/domains/product/repository/ProductCustomRepositoryImpl.java index 5dca4a80..75fe4cb5 100644 --- a/Domain/src/main/java/tify/server/domain/domains/product/repository/ProductCustomRepositoryImpl.java +++ b/Domain/src/main/java/tify/server/domain/domains/product/repository/ProductCustomRepositoryImpl.java @@ -45,7 +45,7 @@ public List searchByCompany(Site site) { return queryFactory .select(new QProductCrawlingDto(product.name, product.crawlUrl)) .from(product) - .where(product.crawlUrl.contains(site.getValue())) + .where(product.crawlUrl.contains(site.getValue()), product.imageUrl.isNull()) .groupBy(product.name) .fetch(); }