Compare commits
No commits in common. "6cc22f5b6d9f4b18491eb47d9d5cf93d606a616c" and "9103d67cc1468b0c5927576e300702f207be4821" have entirely different histories.
6cc22f5b6d
...
9103d67cc1
|
@ -388,7 +388,7 @@ class RankingRepository(
|
||||||
.and(member.id.eq(creatorId))
|
.and(member.id.eq(creatorId))
|
||||||
|
|
||||||
if (!isAdult) {
|
if (!isAdult) {
|
||||||
where = where.and(audioContent.isAdult.isFalse)
|
where = where.and(series.isAdult.isFalse)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (theme.isNotBlank()) {
|
if (theme.isNotBlank()) {
|
||||||
|
@ -511,7 +511,7 @@ class RankingRepository(
|
||||||
.and(audioContent.price.loe(0))
|
.and(audioContent.price.loe(0))
|
||||||
|
|
||||||
if (!isAdult) {
|
if (!isAdult) {
|
||||||
where = where.and(audioContent.isAdult.isFalse)
|
where = where.and(series.isAdult.isFalse)
|
||||||
}
|
}
|
||||||
|
|
||||||
return queryFactory
|
return queryFactory
|
||||||
|
|
Loading…
Reference in New Issue