Compare commits

..

2 Commits

Author SHA1 Message Date
klaus 6cc22f5b6d Merge pull request '콘텐츠 메인 홈, 무료 탭' (#261) from test into main
Reviewed-on: #261
2025-02-19 06:34:53 +00:00
Klaus 03bd915fa5 콘텐츠 메인 홈, 무료 탭
- 콘텐츠 랭킹에서 잘못 작성된 sql 수정
2025-02-19 14:47:59 +09:00
1 changed files with 2 additions and 2 deletions

View File

@ -388,7 +388,7 @@ class RankingRepository(
.and(member.id.eq(creatorId))
if (!isAdult) {
where = where.and(series.isAdult.isFalse)
where = where.and(audioContent.isAdult.isFalse)
}
if (theme.isNotBlank()) {
@ -511,7 +511,7 @@ class RankingRepository(
.and(audioContent.price.loe(0))
if (!isAdult) {
where = where.and(series.isAdult.isFalse)
where = where.and(audioContent.isAdult.isFalse)
}
return queryFactory