sort muc users by affiliation, name. fixes #1913

This commit is contained in:
Daniel Gultsch 2016-06-14 14:41:32 +02:00
parent 95a51ea2e0
commit f9600b950f

View file

@ -296,6 +296,11 @@ public class MucOptions {
@Override @Override
public int compareTo(User another) { public int compareTo(User another) {
if (another.getAffiliation().outranks(getAffiliation())) {
return 1;
} else if (getAffiliation().outranks(another.getAffiliation())) {
return -1;
} else {
Contact ourContact = getContact(); Contact ourContact = getContact();
Contact anotherContact = another.getContact(); Contact anotherContact = another.getContact();
if (ourContact != null && anotherContact != null) { if (ourContact != null && anotherContact != null) {
@ -308,6 +313,7 @@ public class MucOptions {
return getName().compareToIgnoreCase(another.getName()); return getName().compareToIgnoreCase(another.getName());
} }
} }
}
public Jid getRealJid() { public Jid getRealJid() {
return realJid; return realJid;