Merge "Minor change to Wi-Fi WPA3 password length restriction" into sc-qpr1-dev

This commit is contained in:
TreeHugger Robot
2021-09-22 06:25:24 +00:00
committed by Android (Google) Code Review

View File

@@ -484,7 +484,7 @@ public class WifiConfigController2 implements TextWatcher,
}
boolean isValidSaePassword(String password) {
if (password.length() >= 1 && password.length() <= 63) {
if (password.length() >= 1 && password.length() <= 128) {
return true;
}
return false;