Merge pull request #242 from igniterealtime/4.3_MUC-leave-without-nickname

fix: Prevent attempt to construct invalid address
This commit is contained in:
Florian Schmaus 2018-06-12 11:05:27 +02:00 committed by GitHub
commit 021ebf8ab3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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);