fix(unofficial-quotes): try to fix the sudden reload to the top (again)

This commit is contained in:
LucasGGamerM 2024-07-17 12:09:07 -03:00
parent 519cb672d2
commit 1829dc1d9d
1 changed files with 4 additions and 4 deletions

View File

@ -721,12 +721,12 @@ public abstract class BaseStatusListFragment<T extends DisplayItemsParent> exten
// Only StatusListFragments/NotificationsListFragments can display status with quotes
assert (this instanceof StatusListFragment) || (this instanceof NotificationsListFragment);
List<StatusDisplayItem> items=this.buildDisplayItems((T) parent);
int itemCount = displayItems.subList(startIndex, endIndex+1).size()-1;
displayItems.subList(startIndex, endIndex+1).clear();
// adapter.notifyItemRangeRemoved(startIndex, endIndex+1);
boolean isEmpty=displayItems.isEmpty();
adapter.notifyItemRangeChanged(startIndex, itemCount);
displayItems.addAll(startIndex, items);
if(!isEmpty)
adapter.notifyItemRangeInserted(startIndex, items.size());
if(!displayItems.isEmpty())
adapter.notifyItemRangeChanged(startIndex, items.size()-1);
}
}