fix: 메인 홈 - 추천 채널

- 콘텐츠가 빈 리스트로 반환되는 버그 수정
This commit is contained in:
Klaus 2025-07-12 02:53:31 +09:00
parent ca870392e2
commit 81e82ad731
1 changed files with 1 additions and 2 deletions

View File

@ -61,7 +61,7 @@ class RecommendChannelQueryRepository(
}
fun getContentsByCreatorIdLikeDesc(creatorId: Long): List<RecommendChannelContentItem> {
queryFactory
return queryFactory
.select(
QRecommendChannelContentItem(
audioContent.id,
@ -77,6 +77,5 @@ class RecommendChannelQueryRepository(
.where(audioContent.member.id.eq(creatorId))
.groupBy(audioContent.id)
.fetch()
return listOf()
}
}