예약 업로드 된 오디오 콘텐츠 릴리즈

This commit is contained in:
Klaus 2024-01-11 00:04:58 +09:00
parent 0dd1a706fd
commit 8a866df5a3
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ class AudioContentQueryRepositoryImpl(private val queryFactory: JPAQueryFactory)
override fun getNotReleaseContentId(): List<Long> {
val where = audioContent.isActive.isFalse
.and(audioContent.releaseDate.isNotNull)
.and(audioContent.releaseDate.goe(LocalDateTime.now()))
.and(audioContent.releaseDate.loe(LocalDateTime.now()))
return queryFactory
.select(audioContent.id)