From 5ca666c7fa1cf86a77d6a8b824392f77dda13afd Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 7 Nov 2025 20:48:08 +0900 Subject: [PATCH] =?UTF-8?q?feat(home-latest-content):=20=EC=B5=9C=EC=8B=A0?= =?UTF-8?q?=20=EC=BD=98=ED=85=90=EC=B8=A0=20=EC=A1=B0=ED=9A=8C=EC=8B=9C=20?= =?UTF-8?q?=EC=A0=95=EB=A0=AC=20=EC=A1=B0=EA=B1=B4=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 기존: id 내림차순 - 변경: 오픈일 내림차순 --- .../kr/co/vividnext/sodalive/content/AudioContentRepository.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 0d31cee..66abb79 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentRepository.kt @@ -1360,7 +1360,7 @@ class AudioContentQueryRepositoryImpl( .where(where) .offset(offset) .limit(limit) - .orderBy(audioContent.id.desc()) + .orderBy(audioContent.releaseDate.desc()) .fetch() }