Compare commits

..

2 Commits

Author SHA1 Message Date
klaus ac25782f2b Merge pull request '관리자 태그 큐레이션 - 콘텐츠 검색' (#270) from test into main
Reviewed-on: #270
2025-02-21 21:46:15 +00:00
Klaus 8ac9695535 관리자 태그 큐레이션 - 콘텐츠 검색
- 이전에 추가했던 기록이 있으면 검색되지 않던 버그 수정
2025-02-22 06:26:39 +09:00
1 changed files with 4 additions and 1 deletions

View File

@ -66,7 +66,10 @@ class AdminHashTagCurationQueryRepositoryImpl(
.and(audioContent.member.isNotNull)
.and(audioContent.isActive.isTrue)
.and(audioContent.title.contains(searchWord))
.and(contentHashTagCurationItem.id.isNull)
.and(
contentHashTagCurationItem.id.isNull
.or(contentHashTagCurationItem.isActive.isFalse)
)
)
.fetch()
}