fix(content): 랭킹 상세 이동 guard를 보강한다
This commit is contained in:
@@ -293,7 +293,7 @@ class ContentMainFragment : BaseFragment<FragmentV2MainContentBinding>(
|
||||
}
|
||||
|
||||
private fun openRankingAudioContentDetail(item: ContentRankingItem) {
|
||||
val audioContentId = item.contentId.toLongOrNull() ?: return
|
||||
val audioContentId = item.contentId.toLongOrNull()?.takeIf { it > 0L } ?: return
|
||||
openAudioContentDetail(audioContentId)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user