Compare commits
No commits in common. "4dc20c5e90e135c9b59ba86680295ca966383f29" and "ac25782f2b2f3ace36861985a19a1b86ab2f67f5" have entirely different histories.
4dc20c5e90
...
ac25782f2b
|
@ -113,7 +113,6 @@ class AudioContentCurationQueryRepository(private val queryFactory: JPAQueryFact
|
|||
): List<AudioContentCuration> {
|
||||
var where = audioContentCuration.isActive.isTrue
|
||||
.and(audioContentMainTab.id.eq(tabId))
|
||||
.and(audioContentCuration.title.contains(title))
|
||||
|
||||
if (!isAdult) {
|
||||
where = where.and(audioContentCuration.isAdult.isFalse)
|
||||
|
|
|
@ -76,7 +76,7 @@ class AudioContentMainTabFreeService(
|
|||
}
|
||||
|
||||
val curationList = curationRepository.findByContentMainTabId(tabId = tabId, isAdult = isAdult)
|
||||
.filter { !it.title.contains("크리에이터 소개") }
|
||||
.filter { it.title != "크리에이터 소개" }
|
||||
.map {
|
||||
GetContentCurationResponse(
|
||||
title = it.title,
|
||||
|
|
Loading…
Reference in New Issue