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

Commit 64d6e9ce authored by Svetoslav's avatar Svetoslav
Browse files

Fix a reversed condition in the next alarm validator

bug:19361375

Change-Id: Ib5ac90503842aafd994423632fd1f463e49088a0
parent cbcf1d48
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2098,7 +2098,7 @@ public final class Settings {
            @Override
            public boolean validate(String value) {
                // TODO: No idea what the correct format is.
                return value == null || value.length() > MAX_LENGTH;
                return value == null || value.length() < MAX_LENGTH;
            }
        };