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

This commit is contained in:
Vavassor 2017-07-02 16:41:33 -04:00
parent 9e07c59565
commit 17df70d166
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,
// as we have no guarantee on their order to be the same as before
int oldSize = statuses.size();
if (oldSize > 0) {
if (oldSize > 1) {
mainStatus = statuses.get(statusIndex);
statuses.clear();
notifyItemRangeRemoved(0, oldSize);