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

Commit a438c6c4 authored by Felipe Leme's avatar Felipe Leme Committed by android-build-merger
Browse files

Merge "Fixed autofill filter comparison." into oc-dev am: 72f2d98c

am: 4d47d7ad

Change-Id: Ic6d4af3752da2672ce172f09022e0dfaf1bd0810
parents 0245eb9d 4d47d7ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -503,7 +503,7 @@ final class FillUi {
                        final String value = item.getValue();
                        // No value, i.e. null, matches any filter
                        if (value == null
                                || value.toLowerCase().contains(constraintLowerCase)) {
                                || value.toLowerCase().startsWith(constraintLowerCase)) {
                            filteredItems.add(item);
                        }
                    }