fixed crash on failed account registry

This commit is contained in:
Daniel Gultsch 2015-05-17 12:32:04 +02:00
parent fce30f22c9
commit d672d578c9
1 changed files with 1 additions and 1 deletions

View File

@ -683,7 +683,7 @@ public class XmppConnection implements Runnable {
disconnect(true);
Log.d(Config.LOGTAG, account.getJid().toBareJid()
+ ": could not register. instructions are"
+ instructions != null ? instructions.getContent() : "");
+ (instructions != null ? instructions.getContent() : ""));
}
}
});