fix xmpp uri regression

This commit is contained in:
Daniel Gultsch 2017-12-08 18:44:08 +01:00
parent 172d249369
commit 665c5da8ae
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public class XmppUri {
jid = uri.getAuthority();
} else {
String[] parts = uri.getSchemeSpecificPart().split("\\?");
if (parts.length > 1) {
if (parts.length > 0) {
jid = parts[0];
} else {
return;