Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6263fd94 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

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

parents 39b6769e caa29d40
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;