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