Use case insensitive compare

gtask_related_email
Alex Baker 5 years ago
parent f76d046b11
commit 53b6c13e64

@ -103,7 +103,7 @@ public class AlphanumComparator implements Comparator<Filter> {
}
}
} else {
result = thisChunk.compareTo(thatChunk);
result = String.CASE_INSENSITIVE_ORDER.compare(thisChunk, thatChunk);
}
if (result != 0) return result;

Loading…
Cancel
Save