Compare commits

...

3 Commits

Author SHA1 Message Date
klaus f39a7681db Merge pull request 'test' (#189) from test into main
Reviewed-on: #189
2024-06-04 03:39:23 +00:00
Klaus b5f37cb54b 시리즈 리스트
- 데이터 중복 버그 수정
2024-06-04 12:34:53 +09:00
Klaus 6aaa4f8cf6 시리즈 리스트
- 데이터 중복 버그 수정
2024-06-04 12:29:46 +09:00
1 changed files with 1 additions and 3 deletions

View File

@ -65,10 +65,8 @@ class ContentSeriesQueryRepositoryImpl(
return queryFactory
.selectFrom(series)
.innerJoin(series.contentList, seriesContent)
.innerJoin(seriesContent.content, audioContent)
.where(where)
.orderBy(audioContent.releaseDate.desc(), series.orders.asc(), series.createdAt.asc())
.orderBy(series.orders.asc(), series.createdAt.asc())
.offset(offset)
.limit(limit)
.fetch()