fix: Notifcations not refreshing without manually doing so. Fixes #105

This commit is contained in:
LucasGGamerM 2023-03-01 18:11:07 -03:00
parent 77b5819c65
commit 4d40fad10d
1 changed files with 5 additions and 2 deletions

View File

@ -166,8 +166,11 @@ public class NotificationsListFragment extends BaseStatusListFragment<Notificati
@Override
protected void onShown(){
super.onShown();
// if(!getArguments().getBoolean("noAutoLoad") && !loaded && !dataLoading)
// loadData();
if(!getArguments().getBoolean("noAutoLoad") && !loaded && !dataLoading){
refreshing=true;
loadData();
}
}
@Override