Provide useful hint when invalid SIM PIN is entered during changing SIM PIN

Bug: 241441049
Test: Manually tested with Pixel 6 Pro

Change-Id: Ie7239ad397dfeacd59f1483953392ee7935cfd07
This commit is contained in:
Thomas Nguyen
2022-08-02 18:24:19 +00:00
parent 99de6b6693
commit a2b0146d07
2 changed files with 3 additions and 3 deletions

View File

@@ -476,7 +476,7 @@ public class IccLockSettings extends SettingsPreferenceFragment
mPin = preference.getText();
if (!reasonablePin(mPin)) {
// inject error message and display dialog again
mError = mRes.getString(R.string.sim_bad_pin);
mError = mRes.getString(R.string.sim_invalid_pin_hint);
showPinDialog();
return;
}