fix: 메인 홈 - 요일별 시리즈

- groupBy 추가하여 동일한 시리즈가 여러개 추가되어 있는 버그 수정
This commit is contained in:
Klaus 2025-07-11 23:39:55 +09:00
parent a49b82a7c2
commit a7e167a95f
1 changed files with 1 additions and 0 deletions

View File

@ -414,6 +414,7 @@ class ContentSeriesQueryRepositoryImpl(
.innerJoin(series.contentList, seriesContent)
.innerJoin(seriesContent.content, audioContent)
.where(where)
.groupBy(series.id)
.orderBy(seriesContent.content.createdAt.desc())
.offset(offset)
.limit(limit)