Merge "[Settings] Adjusts the result code to cancel when complete redaction interstitial setting" into sc-dev am: d647dece76

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/14675091

Change-Id: Ifed0e47f7345ce8079bbd4ec7db55680c4501e7b
This commit is contained in:
Alex Li
2021-05-24 06:52:22 +00:00
committed by Automerger Merge Worker

View File

@@ -153,7 +153,7 @@ public class RedactionInterstitial extends SettingsActivity {
}
final RedactionInterstitial activity = (RedactionInterstitial) getActivity();
if (activity != null) {
activity.setResult(RESULT_OK, null);
activity.setResult(RESULT_CANCELED, null);
finish();
}
}