Merge pull request '콘텐츠 전체 리스트' () from test into main

Reviewed-on: 
This commit is contained in:
klaus 2024-01-29 09:00:23 +00:00
commit 2cfc067ea1
1 changed files with 1 additions and 1 deletions
src/main/kotlin/kr/co/vividnext/sodalive/content

View File

@ -185,7 +185,7 @@ class AudioContentQueryRepositoryImpl(private val queryFactory: JPAQueryFactory)
.where(where)
.offset(offset)
.limit(limit)
.orderBy(pinContent.isActive.desc(), pinContent.updatedAt.desc(), orderBy)
.orderBy(pinContent.isActive.desc(), pinContent.updatedAt.desc(), orderBy, audioContent.id.desc())
.fetch()
}