Compare commits

...

2 Commits

Author SHA1 Message Date
klaus 2cfc067ea1 Merge pull request '콘텐츠 전체 리스트' (#121) from test into main
Reviewed-on: #121
2024-01-29 09:00:23 +00:00
Klaus 11dcb399f6 콘텐츠 전체 리스트
- 정렬 조건을 추가하여 콘텐츠가 중복으로 보이는 버그 수정
2024-01-29 17:53:29 +09:00
1 changed files with 1 additions and 1 deletions

View File

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