Make passwords sort case insensitive (#290)
This commit is contained in:
parent
e61a656c6c
commit
94c9b5be64
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue