시리즈 콘텐츠

- 대여중/소장중/가격 뱃지가 동시에 표시되는 버그 수정
This commit is contained in:
2024-04-30 19:28:16 +09:00
parent c86e55719e
commit 29d5192fff
2 changed files with 6 additions and 6 deletions

View File

@@ -38,13 +38,9 @@ class SeriesContentAdapter(
if (item.isOwned) {
binding.tvOwned.visibility = View.VISIBLE
}
if (item.isRented) {
} else if (item.isRented) {
binding.tvRented.visibility = View.VISIBLE
}
if (item.price > 0) {
} else if (item.price > 0) {
binding.tvPrice.text = "${item.price}"
binding.tvPrice.visibility = View.VISIBLE
} else {