fix xmpp uri regression
This commit is contained in:
parent
5326111db1
commit
3ac4a7c3ec
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,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;
|
||||
|
|
Reference in a new issue