mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-30 05:48:09 +00:00
Make passwords sort case insensitive (#290)
This commit is contained in:
parent
e61a656c6c
commit
94c9b5be64
@ -104,6 +104,6 @@ public class PasswordItem implements Comparable{
|
||||
PasswordItem other = (PasswordItem) o;
|
||||
// Appending the type will make the sort type dependent
|
||||
return (this.getType() + this.getName())
|
||||
.compareTo(other.getType() + other.getName());
|
||||
.compareToIgnoreCase(other.getType() + other.getName());
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user