오디오 콘텐츠 상세
- isActive가 false이더라도 releaseDate가 null이 아니면 데이터를 불러오도록 수정
This commit is contained in:
parent
1a02f2383e
commit
c479e5ad81
|
@ -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다시 시도해 주세요.")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue