possible fix to #883
This commit is contained in:
parent
e55a153b5d
commit
4812e1bfe4
|
@ -176,7 +176,7 @@ class ParcelableActivitiesAdapter(
|
|||
filteredUserKeys = data.filteredUserIds
|
||||
}
|
||||
this.data = data
|
||||
infoCache = if (data != null) arrayOfNulls(data.size) else null
|
||||
this.infoCache = if (data != null) arrayOfNulls(data.size) else null
|
||||
gapLoadingIds.clear()
|
||||
updateItemCount()
|
||||
notifyDataSetChanged()
|
||||
|
|
|
@ -190,6 +190,7 @@ abstract class ParcelableStatusesAdapter(
|
|||
changed = this.data != data
|
||||
}
|
||||
this.data = data
|
||||
this.infoCache = if (data != null) arrayOfNulls(data.size) else null
|
||||
gapLoadingIds.clear()
|
||||
updateItemCount()
|
||||
notifyDataSetChanged()
|
||||
|
|
Loading…
Reference in New Issue