Fixing a weird crash on the onHidden method added in a commit from upstream

This commit is contained in:
LucasGGamerM 2023-01-24 17:36:15 -03:00
parent f69b308936
commit 476b462e86
1 changed files with 18 additions and 18 deletions

View File

@ -98,24 +98,24 @@ public class HomeTimelineFragment extends FabStatusListFragment {
@Override @Override
protected void onHidden(){ protected void onHidden(){
super.onHidden(); super.onHidden();
if(!data.isEmpty()){ // if(!data.isEmpty()){
String topPostID=displayItems.get(list.getChildAdapterPosition(list.getChildAt(0))-getMainAdapterOffset()).parentID; // String topPostID=displayItems.get(list.getChildAdapterPosition(list.getChildAt(0))-getMainAdapterOffset()).parentID;
if(!topPostID.equals(lastSavedMarkerID)){ // if(!topPostID.equals(lastSavedMarkerID)){
lastSavedMarkerID=topPostID; // lastSavedMarkerID=topPostID;
new SaveMarkers(topPostID, null) // new SaveMarkers(topPostID, null)
.setCallback(new Callback<>(){ // .setCallback(new Callback<>(){
@Override // @Override
public void onSuccess(SaveMarkers.Response result){ // public void onSuccess(SaveMarkers.Response result){
} // }
//
@Override // @Override
public void onError(ErrorResponse error){ // public void onError(ErrorResponse error){
lastSavedMarkerID=null; // lastSavedMarkerID=null;
} // }
}) // })
.exec(accountID); // .exec(accountID);
} // }
} // }
} }
public void onStatusCreated(StatusCreatedEvent ev){ public void onStatusCreated(StatusCreatedEvent ev){