콘텐츠 메인 무료 탭 - 새로운 무료 콘텐츠 #263

Merged
klaus merged 1 commits from test into main 2025-02-19 09:24:24 +00:00
1 changed files with 5 additions and 1 deletions

View File

@ -137,7 +137,11 @@ class AudioContentMainTabFreeService(
): List<GetAudioContentMainItem> {
return audioContentRepository.findByTheme(
memberId = member.id!!,
theme = listOf(theme),
theme = if (theme.isNotBlank()) {
listOf(theme)
} else {
emptyList()
},
isAdult = member.auth != null && isAdultContentVisible,
contentType = contentType,
offset = offset,