Fix 3444669: Fix message string for max password length
Change-Id: I5828dc0127b0296d87bdc0c9e251fd9c9a92bd0d
This commit is contained in:
@@ -274,7 +274,7 @@ public class ChooseLockPassword extends PreferenceActivity {
|
||||
if (password.length() > mPasswordMaxLength) {
|
||||
return getString(mIsAlphaMode ?
|
||||
R.string.lockpassword_password_too_long
|
||||
: R.string.lockpassword_pin_too_long, mPasswordMaxLength);
|
||||
: R.string.lockpassword_pin_too_long, mPasswordMaxLength + 1);
|
||||
}
|
||||
int letters = 0;
|
||||
int numbers = 0;
|
||||
|
Reference in New Issue
Block a user