From c8c1087b7317934f639db91c935b5fb2a774b79b Mon Sep 17 00:00:00 2001 From: Klaus Date: Wed, 19 Feb 2025 18:13:26 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EB=A9=94?= =?UTF-8?q?=EC=9D=B8=20=EB=AC=B4=EB=A3=8C=20=ED=83=AD=20-=20=EC=83=88?= =?UTF-8?q?=EB=A1=9C=EC=9A=B4=20=EB=AC=B4=EB=A3=8C=20=EC=BD=98=ED=85=90?= =?UTF-8?q?=EC=B8=A0=20-=20=EC=A0=84=EC=B2=B4=EB=A5=BC=20=ED=84=B0?= =?UTF-8?q?=EC=B9=98=ED=95=98=EB=A9=B4=20=ED=85=8C=EB=A7=88=EA=B0=80=20?= =?UTF-8?q?=EB=B9=88=EC=B9=B8=EC=9C=BC=EB=A1=9C=20=EB=93=A4=EC=96=B4?= =?UTF-8?q?=EA=B0=80=EB=8A=94=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../content/main/tab/free/AudioContentMainTabFreeService.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/main/tab/free/AudioContentMainTabFreeService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/main/tab/free/AudioContentMainTabFreeService.kt index 423b8b7..c7a2e02 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/main/tab/free/AudioContentMainTabFreeService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/main/tab/free/AudioContentMainTabFreeService.kt @@ -137,7 +137,11 @@ class AudioContentMainTabFreeService( ): List { 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, -- 2.40.1