Possible fix for unnecessary thread post reloading (issue #327).

This commit is contained in:
Vavassor 2017-07-02 16:41:33 -04:00
parent 0922687842
commit f5450dc54a
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public class ThreadAdapter extends RecyclerView.Adapter implements AdapterItemRe
// In case of refresh, remove old ancestors and descendants first. We'll remove all blindly, // In case of refresh, remove old ancestors and descendants first. We'll remove all blindly,
// as we have no guarantee on their order to be the same as before // as we have no guarantee on their order to be the same as before
int oldSize = statuses.size(); int oldSize = statuses.size();
if (oldSize > 0) { if (oldSize > 1) {
mainStatus = statuses.get(statusIndex); mainStatus = statuses.get(statusIndex);
statuses.clear(); statuses.clear();
notifyItemRangeRemoved(0, oldSize); notifyItemRangeRemoved(0, oldSize);