mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
muc: fix roomDestroyed() callback
The previous site where the callback was invoked was only reached if there was also a user status on the unvailable presence. But those are not part of unavilable presences upon room destruction. Fixes SMACK-888.
This commit is contained in:
parent
20aaef2628
commit
0f7b7df1f0
1 changed files with 16 additions and 7 deletions
|
@ -248,6 +248,22 @@ public class MultiUserChat {
|
||||||
listener.left(from);
|
listener.left(from);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Destroy destroy = mucUser.getDestroy();
|
||||||
|
// The room has been destroyed.
|
||||||
|
if (destroy != null) {
|
||||||
|
EntityBareJid alternateMucJid = destroy.getJid();
|
||||||
|
final MultiUserChat alternateMuc;
|
||||||
|
if (alternateMucJid == null) {
|
||||||
|
alternateMuc = null;
|
||||||
|
} else {
|
||||||
|
alternateMuc = multiUserChatManager.getMultiUserChat(alternateMucJid);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (UserStatusListener listener : userStatusListeners) {
|
||||||
|
listener.roomDestroyed(alternateMuc, destroy.getReason());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@ -2471,13 +2487,6 @@ public class MultiUserChat {
|
||||||
listener.nicknameChanged(from, mucUser.getItem().getNick());
|
listener.nicknameChanged(from, mucUser.getItem().getNick());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// The room has been destroyed.
|
|
||||||
if (mucUser.getDestroy() != null) {
|
|
||||||
MultiUserChat alternateMUC = multiUserChatManager.getMultiUserChat(mucUser.getDestroy().getJid());
|
|
||||||
for (UserStatusListener listener : userStatusListeners) {
|
|
||||||
listener.roomDestroyed(alternateMUC, mucUser.getDestroy().getReason());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue