Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e9e8858d authored by Fan Zhang's avatar Fan Zhang Committed by android-build-merger
Browse files

Correctly propagate bundle extra from intent to fragment

am: e8666c66

Change-Id: I8658f9460d4d06c746dcfd2aa1b037fe7bb545b9
parents 22a39c2b e8666c66
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -523,7 +523,7 @@ public class SettingsActivity extends SettingsDrawerActivity
        if (startingFragment != null) {
            Intent modIntent = new Intent(superIntent);
            modIntent.putExtra(EXTRA_SHOW_FRAGMENT, startingFragment);
            Bundle args = superIntent.getExtras();
            Bundle args = superIntent.getBundleExtra(EXTRA_SHOW_FRAGMENT_ARGUMENTS);
            if (args != null) {
                args = new Bundle(args);
            } else {