mirror of https://github.com/M66B/FairEmail.git
Fixed sorting of SRV records on priority
This commit is contained in:
parent
64ab7a090e
commit
609ad4e6a0
|
@ -1038,7 +1038,7 @@ public class EmailProvider implements Parcelable {
|
|||
Collections.sort(list, new Comparator<DnsHelper.DnsRecord>() {
|
||||
@Override
|
||||
public int compare(DnsHelper.DnsRecord d1, DnsHelper.DnsRecord d2) {
|
||||
int p = -Integer.compare(d1.priority, d2.priority);
|
||||
int p = Integer.compare(d1.priority, d2.priority);
|
||||
if (p != 0)
|
||||
return p;
|
||||
int w = -Integer.compare(d1.weight, d2.weight);
|
||||
|
@ -1076,7 +1076,7 @@ public class EmailProvider implements Parcelable {
|
|||
Collections.sort(list, new Comparator<DnsHelper.DnsRecord>() {
|
||||
@Override
|
||||
public int compare(DnsHelper.DnsRecord d1, DnsHelper.DnsRecord d2) {
|
||||
int p = -Integer.compare(d1.priority, d2.priority);
|
||||
int p = Integer.compare(d1.priority, d2.priority);
|
||||
if (p != 0)
|
||||
return p;
|
||||
int w = -Integer.compare(d1.weight, d2.weight);
|
||||
|
|
Loading…
Reference in New Issue