From ebb969c039e007b319ca70de7cc9cf7b0b38276d Mon Sep 17 00:00:00 2001 From: Klaus Date: Wed, 7 Feb 2024 06:08:44 +0900 Subject: [PATCH] =?UTF-8?q?=ED=81=AC=EB=A6=AC=EC=97=90=EC=9D=B4=ED=84=B0?= =?UTF-8?q?=20=EA=B4=80=EB=A6=AC=EC=9E=90=20=EC=B9=B4=ED=85=8C=EA=B3=A0?= =?UTF-8?q?=EB=A6=AC=20=EC=BD=98=ED=85=90=EC=B8=A0=20=EA=B2=80=EC=83=89=20?= =?UTF-8?q?-=20=ED=95=B4=EB=8B=B9=20=EC=B9=B4=ED=85=8C=EA=B3=A0=EB=A6=AC?= =?UTF-8?q?=EC=97=90=20=EC=86=8D=ED=95=9C=20=EC=BD=98=ED=85=90=EC=B8=A0?= =?UTF-8?q?=EB=8A=94=20=EA=B2=80=EC=83=89=EB=90=98=EC=A7=80=20=EC=95=8A?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/content/category/CreatorAdminCategoryRepository.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/creator/admin/content/category/CreatorAdminCategoryRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/creator/admin/content/category/CreatorAdminCategoryRepository.kt index 9657d65..2e49fd6 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/creator/admin/content/category/CreatorAdminCategoryRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/creator/admin/content/category/CreatorAdminCategoryRepository.kt @@ -23,9 +23,8 @@ class CreatorAdminCategoryRepository(private val queryFactory: JPAQueryFactory) .and(audioContent.member.id.eq(memberId)) .and(audioContent.isActive.isTrue.or(audioContent.releaseDate.isNotNull)) .and(audioContent.title.contains(searchWord)) - .and(categoryContent.category.id.ne(categoryId)) + .and(categoryContent.category.id.eq(categoryId)) ) - .groupBy(audioContent.id) .fetch() }