Merge "Minor change to Wi-Fi WPA3 password length restriction" into sc-qpr1-dev am: 6263fd9471 am: 03f1947b2c am: b63f60f87d

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/15860293

Change-Id: I1de49fd6bce3bd2cbb25a7b8e2d6639e7f917ae6
This commit is contained in:
TreeHugger Robot
2021-09-22 07:00:55 +00:00
committed by Automerger Merge Worker

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;