pull/37/head
kunfei 5 years ago
parent 1056b17076
commit f94d9503d7
  1. 4
      app/src/main/java/io/legado/app/base/adapter/CommonRecyclerAdapter.kt

@ -130,7 +130,9 @@ abstract class CommonRecyclerAdapter<ITEM>(protected val context: Context) : Rec
if (items != null) { if (items != null) {
this.items.addAll(items) this.items.addAll(items)
} }
notifyDataSetChanged() if (notify) {
notifyDataSetChanged()
}
} }
} }

Loading…
Cancel
Save