fixed another break continue bug

iNPUTmice created

Change summary

src/main/java/eu/siacs/conversations/services/XmppConnectionService.java | 5 
1 file changed, 2 insertions(+), 3 deletions(-)

Detailed changes

src/main/java/eu/siacs/conversations/services/XmppConnectionService.java 🔗

@@ -865,10 +865,9 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
 						try {
 							jid = Jid.fromString(phoneContact.getString("jid"));
 						} catch (final InvalidJidException e) {
-							break;
+							continue;
 						}
-						final Contact contact = account.getRoster()
-								.getContact(jid);
+						final Contact contact = account.getRoster().getContact(jid);
 						String systemAccount = phoneContact.getInt("phoneid")
 								+ "#"
 								+ phoneContact.getString("lookup");