This commit is contained in:
kunfei
2022-02-21 09:04:30 +08:00
parent 9e749a18f4
commit c0dda0bf48
2 changed files with 2 additions and 6 deletions
@@ -49,11 +49,7 @@ abstract class DiffRecyclerAdapter<ITEM, VB : ViewBinding>(protected val context
@Synchronized @Synchronized
fun setItems(items: List<ITEM>?) { fun setItems(items: List<ITEM>?) {
kotlin.runCatching { kotlin.runCatching {
if (items == null) { asyncListDiffer.submitList(items)
asyncListDiffer.submitList(null)
} else {
asyncListDiffer.submitList(ArrayList(items))
}
} }
} }
@@ -37,7 +37,7 @@ class ChangeCoverViewModel(application: Application) : BaseViewModel(application
searchSuccess = { searchSuccess = {
if (!searchBooks.contains(it)) { if (!searchBooks.contains(it)) {
searchBooks.add(it) searchBooks.add(it)
trySend(searchBooks) trySend(ArrayList(searchBooks))
} }
} }