This commit is contained in:
Grishka 2023-01-22 01:12:39 +03:00
parent 51219bf98a
commit ddfeaabd44
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ public class HomeTimelineFragment extends StatusListFragment{
protected void onHidden(){
super.onHidden();
if(!data.isEmpty()){
String topPostID=displayItems.get(list.getChildAdapterPosition(list.getChildAt(0))-getMainAdapterOffset()).parentID;
String topPostID=displayItems.get(Math.max(0, list.getChildAdapterPosition(list.getChildAt(0))-getMainAdapterOffset())).parentID;
if(!topPostID.equals(lastSavedMarkerID)){
lastSavedMarkerID=topPostID;
new SaveMarkers(topPostID, null)