feat(home-latest-content): 최신 콘텐츠 조회시 정렬 조건 변경 #357

Merged
klaus merged 1 commits from test into main 2025-11-07 12:00:59 +00:00
Showing only changes of commit 5ca666c7fa - Show all commits

View File

@@ -1360,7 +1360,7 @@ class AudioContentQueryRepositoryImpl(
.where(where) .where(where)
.offset(offset) .offset(offset)
.limit(limit) .limit(limit)
.orderBy(audioContent.id.desc()) .orderBy(audioContent.releaseDate.desc())
.fetch() .fetch()
} }