made muc parser more compatible with legacy mucs?! (whatever that is exactly)

This commit is contained in:
iNPUTmice 2014-12-03 01:46:26 +01:00
parent 605998c966
commit c273637156
1 changed files with 1 additions and 3 deletions

View File

@ -179,7 +179,7 @@ public class MucOptions {
user.setAffiliation(item.getAttribute("affiliation"));
user.setRole(item.getAttribute("role"));
user.setJid(item.getAttributeAsJid("jid"));
if (codes.contains(STATUS_CODE_SELF_PRESENCE)) {
if (codes.contains(STATUS_CODE_SELF_PRESENCE) || packet.getFrom().equals(this.conversation.getContactJid())) {
this.isOnline = true;
this.error = ERROR_NO_ERROR;
self = user;
@ -190,8 +190,6 @@ public class MucOptions {
this.onJoinListener.onSuccess();
this.onJoinListener = null;
}
} else if (packet.getFrom().equals(this.conversation.getContactJid())) {
self = user;
} else {
addUser(user);
}