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

Commit 3a861d15 authored by Aaron Liu's avatar Aaron Liu Committed by Android (Google) Code Review
Browse files

Merge "Allow >= 8 digits for puk" into main

parents 4fb5e3e3 939fc3c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -246,7 +246,7 @@ public class KeyguardSimPukViewController

    private boolean checkPuk() {
        // make sure the puk is at least 8 digits long.
        if (mPasswordEntry.getText().length() == 8) {
        if (mPasswordEntry.getText().length() >= 8) {
            mPukText = mPasswordEntry.getText();
            return true;
        }