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

This commit is contained in:
Alex Li
2021-05-24 06:32:09 +00:00
committed by Android (Google) Code Review

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();
}
}