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

Commit c913ff28 authored by Svetoslav's avatar Svetoslav Committed by Android (Google) Code Review
Browse files

Merge "Fix a reversed condition in the next alarm validator"

parents a2c78845 64d6e9ce
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;
            }
        };