콘텐츠 메인 무료 탭 - 새로운 무료 콘텐츠
- 전체를 터치하면 테마가 빈칸으로 들어가는 버그 수정
This commit is contained in:
@@ -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,
|
||||
|
Reference in New Issue
Block a user