시리즈 상세 작품소개

- 0원 -> 무료로 변경
This commit is contained in:
klaus 2024-04-30 14:57:32 +09:00
parent 346334a0ba
commit 839a8a780c
1 changed files with 3 additions and 3 deletions

View File

@ -59,14 +59,14 @@ class SeriesDetailIntroductionFragment : BaseFragment<FragmentSeriesDetailIntrod
"$rentalMaxPrice(15일)"
}
} else {
"$rentalMinPrice ~ ${rentalMaxPrice}캔 (15일)"
"${if (rentalMinPrice == 0) "무료" else rentalMinPrice} ~ ${rentalMaxPrice}캔 (15일)"
}
binding.tvPrice.text = if (minPrice == maxPrice) {
if (maxPrice == 0) {
"무료(15일)"
"무료"
} else {
"$maxPrice(15일)"
"$maxPrice"
}
} else {
"${if (minPrice == 0) "무료" else minPrice} ~ ${maxPrice}"