Compare commits

..

No commits in common. "f39a7681db5a0093de8fcfb31083fa43319342f8" and "c60a7580ba4f7a09cdf7dbbbbafe4c9cd4528507" have entirely different histories.

1 changed files with 3 additions and 1 deletions

View File

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