diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentRepository.kt index 2236884..7b046e4 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentRepository.kt @@ -1313,7 +1313,6 @@ class AudioContentQueryRepositoryImpl( audioContent.releaseDate.isNull .or(audioContent.releaseDate.loe(LocalDateTime.now())) ) - .and(blockMember.id.isNull) if (!isAdult) { where = where.and(audioContent.isAdult.isFalse) @@ -1360,6 +1359,7 @@ class AudioContentQueryRepositoryImpl( .where(where) .offset(offset) .limit(limit) + .orderBy(audioContent.id.desc()) .fetch() }