parent
feae2f5f98
commit
c8c1087b73
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue