Merge pull request '콘텐츠 메인 무료 탭 - 새로운 무료 콘텐츠' (#263) from test into main
Reviewed-on: #263
This commit is contained in:
commit
6ea69e1510
|
@ -137,7 +137,11 @@ class AudioContentMainTabFreeService(
|
||||||
): List<GetAudioContentMainItem> {
|
): List<GetAudioContentMainItem> {
|
||||||
return audioContentRepository.findByTheme(
|
return audioContentRepository.findByTheme(
|
||||||
memberId = member.id!!,
|
memberId = member.id!!,
|
||||||
theme = listOf(theme),
|
theme = if (theme.isNotBlank()) {
|
||||||
|
listOf(theme)
|
||||||
|
} else {
|
||||||
|
emptyList()
|
||||||
|
},
|
||||||
isAdult = member.auth != null && isAdultContentVisible,
|
isAdult = member.auth != null && isAdultContentVisible,
|
||||||
contentType = contentType,
|
contentType = contentType,
|
||||||
offset = offset,
|
offset = offset,
|
||||||
|
|
Loading…
Reference in New Issue