mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +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.
|
||||
userHasLeft();
|
||||
|
||||
if (nickname == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
// We leave a room by sending a presence packet where the "to"
|
||||
// field is in the form "roomName@service/nickname"
|
||||
Presence leavePresence = new Presence(Presence.Type.unavailable);
|
||||
|
|
Loading…
Reference in a new issue