Compare commits

..

No commits in common. "2cfc067ea12e16446e952906b8c114acfc06f02e" and "a91db4f95680c187b30701b3607455cec4820d32" have entirely different histories.

1 changed files with 1 additions and 1 deletions

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, audioContent.id.desc())
.orderBy(pinContent.isActive.desc(), pinContent.updatedAt.desc(), orderBy)
.fetch()
}