feed/cats frags: force reload contents onresume

TODO: tie this to fragment history stack / parentbutton somehow
This commit is contained in:
Andrew Dolgov 2017-06-01 18:41:50 +03:00
parent 3b47942489
commit 3c130c019e
2 changed files with 2 additions and 2 deletions

View File

@ -374,7 +374,7 @@ public class FeedCategoriesFragment extends BaseFeedlistFragment implements OnIt
public void onResume() {
super.onResume();
getLoaderManager().initLoader(0, null, this);
getLoaderManager().initLoader(0, null, this).forceLoad();
m_activity.invalidateOptionsMenu();
}

View File

@ -422,7 +422,7 @@ public class FeedsFragment extends BaseFeedlistFragment implements OnItemClickLi
public void onResume() {
super.onResume();
getLoaderManager().initLoader(0, null, this);
getLoaderManager().initLoader(0, null, this).forceLoad();
m_activity.invalidateOptionsMenu();
}