test #125

Merged
klaus merged 14 commits from test into main 2024-02-07 09:39:10 +00:00
1 changed files with 7 additions and 1 deletions
Showing only changes of commit d3ffa1d40a - Show all commits

View File

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