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

Commit f396d920 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Minor change to Wi-Fi WPA3 password length restriction" into...

Merge "Minor change to Wi-Fi WPA3 password length restriction" into sc-qpr1-dev am: 6263fd94 am: 03f1947b am: b63f60f8

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

Change-Id: I1de49fd6bce3bd2cbb25a7b8e2d6639e7f917ae6
parents 26794b0b b63f60f8
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;