test #327

Merged
klaus merged 13 commits from test into main 2025-07-14 11:07:58 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit a4b5185f6b - Show all commits

View File

@ -1313,7 +1313,6 @@ class AudioContentQueryRepositoryImpl(
audioContent.releaseDate.isNull audioContent.releaseDate.isNull
.or(audioContent.releaseDate.loe(LocalDateTime.now())) .or(audioContent.releaseDate.loe(LocalDateTime.now()))
) )
.and(blockMember.id.isNull)
if (!isAdult) { if (!isAdult) {
where = where.and(audioContent.isAdult.isFalse) where = where.and(audioContent.isAdult.isFalse)
@ -1360,6 +1359,7 @@ class AudioContentQueryRepositoryImpl(
.where(where) .where(where)
.offset(offset) .offset(offset)
.limit(limit) .limit(limit)
.orderBy(audioContent.id.desc())
.fetch() .fetch()
} }