- 크리에이터가 없으면 섹션제거
This commit is contained in:
klaus 2024-05-03 13:36:41 +09:00
parent db364d9bf7
commit 84ac72b391
2 changed files with 7 additions and 3 deletions

View File

@ -40,8 +40,8 @@ android {
applicationId "kr.co.vividnext.sodalive"
minSdk 23
targetSdk 33
versionCode 64
versionName "1.10.0"
versionCode 66
versionName "1.10.2"
}
buildTypes {

View File

@ -121,7 +121,11 @@ class ExplorerAdapter(
)
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
holder.bind(items[position])
val item = items[position]
if (item.creators.isNotEmpty()) {
holder.bind(items[position])
}
}
override fun getItemCount() = items.size