Merge "Minor change to Wi-Fi WPA3 password length restriction" into sc-qpr1-dev am: 6263fd9471
am: 03f1947b2c
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/15860293 Change-Id: I95aeac99a8c8da059dc3957f6fa488ba888c905e
This commit is contained in:
@@ -484,7 +484,7 @@ public class WifiConfigController2 implements TextWatcher,
|
|||||||
}
|
}
|
||||||
|
|
||||||
boolean isValidSaePassword(String password) {
|
boolean isValidSaePassword(String password) {
|
||||||
if (password.length() >= 1 && password.length() <= 63) {
|
if (password.length() >= 1 && password.length() <= 128) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Reference in New Issue
Block a user