diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentService.kt index 27a7131..15be2f7 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentService.kt @@ -835,9 +835,9 @@ class AudioContentService( val theme = audioContent.theme if (theme?.id != null) { val locale = langContext.lang.code - val translated = contentThemeTranslationRepository + val translatedContentTheme = contentThemeTranslationRepository .findByContentThemeIdAndLocale(theme.id!!, locale) - val text = translated?.theme + val text = translatedContentTheme?.theme if (!text.isNullOrBlank()) text else theme.theme } else { audioContent.theme!!.theme