Fix stripping protocol from XMPP contact URIs

maven
Ingo Bauersachs 11 years ago
parent 5984454db2
commit 56e13236bb

@ -317,7 +317,7 @@ public void handleUri(String uri)
= provider
.getOperationSet(OperationSetPersistentPresence.class);
String contactId = uri.replaceFirst(getProtocol() + ":", "");
String contactId = uri.substring(uri.indexOf(':') + 1);
//todo check url!!
//Set the email pattern string

Loading…
Cancel
Save