From 8a03249759a3d0a9e4e9794175a27fec6ae8d85d Mon Sep 17 00:00:00 2001 From: Klaus Date: Wed, 4 Dec 2024 11:18:42 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EC=BB=A4?= =?UTF-8?q?=EB=B2=84=EC=9D=B4=EB=AF=B8=EC=A7=80=20=EC=A1=B0=ED=9A=8C=20API?= =?UTF-8?q?=20-=20=EB=B9=A0=EC=A7=84=20=EC=A1=B0=EA=B1=B4=EB=AC=B8=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kr/co/vividnext/sodalive/content/AudioContentRepository.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentRepository.kt index d48ff84..1810577 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentRepository.kt @@ -810,6 +810,7 @@ class AudioContentQueryRepositoryImpl( return queryFactory .select(audioContent.coverImage.prepend("/").prepend(imageHost)) .from(audioContent) + .where(audioContent.id.eq(id)) .fetchFirst() } }