From 525f837e217804e0cf97c407346c8f50b4753e2b Mon Sep 17 00:00:00 2001
From: Klaus <klaus@vividnext.co.kr>
Date: Wed, 7 Feb 2024 05:11:33 +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     | 1 +
 1 file changed, 1 insertion(+)

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 f46e2df..53da456 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,6 +23,7 @@ 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))
             )
             .fetch()
     }