Merge "Don't trampoline twice when opening security or privacy" into tm-qpr-dev am: 062b18c736
am: cf14410f5c
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/20209765 Change-Id: I457654172b46fff1b1059a8058894caad3021e80 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -158,6 +158,11 @@ public class Settings extends SettingsActivity {
|
||||
/** Redirects to SafetyCenter if enabled. */
|
||||
@VisibleForTesting
|
||||
public void handleSafetyCenterRedirection() {
|
||||
if (isFinishing()) {
|
||||
// Don't trampoline if already exiting this activity.
|
||||
return;
|
||||
}
|
||||
|
||||
if (SafetyCenterManagerWrapper.get().isEnabled(this)) {
|
||||
try {
|
||||
startActivity(new Intent(Intent.ACTION_SAFETY_CENTER));
|
||||
@@ -219,6 +224,11 @@ public class Settings extends SettingsActivity {
|
||||
/** Redirects to SafetyCenter if enabled. */
|
||||
@VisibleForTesting
|
||||
public void handleSafetyCenterRedirection() {
|
||||
if (isFinishing()) {
|
||||
// Don't trampoline if already exiting this activity.
|
||||
return;
|
||||
}
|
||||
|
||||
if (ACTION_PRIVACY_SETTINGS.equals(getIntent().getAction())
|
||||
&& SafetyCenterManagerWrapper.get().isEnabled(this)) {
|
||||
try {
|
||||
|
Reference in New Issue
Block a user