Loading app/ui/legacy/src/main/java/com/fsck/k9/activity/compose/RecipientLoader.java +5 −1 Original line number Diff line number Diff line Loading @@ -110,8 +110,12 @@ public class RecipientLoader extends AsyncTaskLoader<List<Recipient>> { return timesContactedDiff; } if (lhs.sortKey == null || rhs.sortKey == null) { if (lhs.sortKey == null && rhs.sortKey == null) { return 0; } else if (lhs.sortKey == null) { return 1; } else if (rhs.sortKey == null) { return -1; } return CASE_INSENSITIVE_ORDER.compare(lhs.sortKey, rhs.sortKey); Loading Loading
app/ui/legacy/src/main/java/com/fsck/k9/activity/compose/RecipientLoader.java +5 −1 Original line number Diff line number Diff line Loading @@ -110,8 +110,12 @@ public class RecipientLoader extends AsyncTaskLoader<List<Recipient>> { return timesContactedDiff; } if (lhs.sortKey == null || rhs.sortKey == null) { if (lhs.sortKey == null && rhs.sortKey == null) { return 0; } else if (lhs.sortKey == null) { return 1; } else if (rhs.sortKey == null) { return -1; } return CASE_INSENSITIVE_ORDER.compare(lhs.sortKey, rhs.sortKey); Loading