Fixed navigation from notifications

This commit is contained in:
M66B 2019-03-19 17:34:24 +00:00
parent c4eb9569b9
commit 67d052f500
1 changed files with 6 additions and 5 deletions

View File

@ -393,7 +393,8 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
} }
}); });
if (getSupportFragmentManager().getFragments().size() == 0 && !getIntent().hasExtra(Intent.EXTRA_PROCESS_TEXT)) if (getSupportFragmentManager().getFragments().size() == 0 &&
!getIntent().hasExtra(Intent.EXTRA_PROCESS_TEXT))
init(); init();
if (savedInstanceState != null) if (savedInstanceState != null)
@ -452,11 +453,11 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
intent.setAction(null); intent.setAction(null);
setIntent(intent); setIntent(intent);
if ("unified".equals(action)) if ("unified".equals(action)) {
init(); getSupportFragmentManager().popBackStack("unified", 0);
else if ("why".equals(action)) { } else if ("why".equals(action)) {
init(); getSupportFragmentManager().popBackStack("unified", 0);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(ActivityView.this); SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(ActivityView.this);
boolean why = prefs.getBoolean("why", false); boolean why = prefs.getBoolean("why", false);