mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Merge pull request #242 from igniterealtime/4.3_MUC-leave-without-nickname
fix: Prevent attempt to construct invalid address
This commit is contained in:
commit
021ebf8ab3
1 changed files with 4 additions and 0 deletions
|
@ -756,6 +756,10 @@ public class MultiUserChat {
|
||||||
// throw.
|
// throw.
|
||||||
userHasLeft();
|
userHasLeft();
|
||||||
|
|
||||||
|
if (nickname == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// We leave a room by sending a presence packet where the "to"
|
// We leave a room by sending a presence packet where the "to"
|
||||||
// field is in the form "roomName@service/nickname"
|
// field is in the form "roomName@service/nickname"
|
||||||
Presence leavePresence = new Presence(Presence.Type.unavailable);
|
Presence leavePresence = new Presence(Presence.Type.unavailable);
|
||||||
|
|
Loading…
Reference in a new issue