fixed another break continue bug
This commit is contained in:
parent
88f43643bf
commit
6b047bed97
|
@ -865,10 +865,9 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
try {
|
try {
|
||||||
jid = Jid.fromString(phoneContact.getString("jid"));
|
jid = Jid.fromString(phoneContact.getString("jid"));
|
||||||
} catch (final InvalidJidException e) {
|
} catch (final InvalidJidException e) {
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
final Contact contact = account.getRoster()
|
final Contact contact = account.getRoster().getContact(jid);
|
||||||
.getContact(jid);
|
|
||||||
String systemAccount = phoneContact.getInt("phoneid")
|
String systemAccount = phoneContact.getInt("phoneid")
|
||||||
+ "#"
|
+ "#"
|
||||||
+ phoneContact.getString("lookup");
|
+ phoneContact.getString("lookup");
|
||||||
|
|
Loading…
Reference in New Issue