parent
db364d9bf7
commit
84ac72b391
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue