예약 업로드 #113

Merged
klaus merged 18 commits from test into main 2024-01-10 16:59:51 +00:00
1 changed files with 6 additions and 1 deletions
Showing only changes of commit c479e5ad81 - Show all commits

View File

@ -448,7 +448,12 @@ class AudioContentService(
contentId = audioContent.id!! contentId = audioContent.id!!
) )
if (!isExistsAudioContent && !isExistsBundleAudioContent && !audioContent.isActive) { if (
!isExistsAudioContent &&
!isExistsBundleAudioContent &&
!audioContent.isActive &&
audioContent.releaseDate == null
) {
throw SodaException("잘못된 콘텐츠 입니다.\n다시 시도해 주세요.") throw SodaException("잘못된 콘텐츠 입니다.\n다시 시도해 주세요.")
} }