Compare commits
2 Commits
553c6dc539
...
6ea69e1510
Author | SHA1 | Date |
---|---|---|
|
6ea69e1510 | |
|
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