Skip to content

Commit

Permalink
Fixes #445: Problem with "Go back after mark all items as read"
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsbraden committed Mar 14, 2021
1 parent aa60f7a commit c900cd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.Menu_MarkAllRead: {
IUpdatable updateable = new ReadStateUpdater(ReadStateUpdater.TYPE.ALL_CATEGORIES);
ReadStateDialog.getInstance(updateable, backAfterUpdate).show(activity.getSupportFragmentManager());
ReadStateDialog.getInstance(updateable, false).show(activity.getSupportFragmentManager());
return true;
}
case R.id.Menu_MarkFeedsRead:
Expand Down

0 comments on commit c900cd2

Please sign in to comment.