avoid npe when checking for stream restart
This commit is contained in:
parent
c7ff196f58
commit
ef7857ac8d
|
@ -360,7 +360,8 @@ public class XmppConnection implements Runnable {
|
||||||
String.valueOf(saslMechanism.getPriority()));
|
String.valueOf(saslMechanism.getPriority()));
|
||||||
tagReader.reset();
|
tagReader.reset();
|
||||||
sendStartStream();
|
sendStartStream();
|
||||||
if (tagReader.readTag().isStart("stream")) {
|
final Tag tag = tagReader.readTag();
|
||||||
|
if (tag != null && tag.isStart("stream")) {
|
||||||
processStream();
|
processStream();
|
||||||
} else {
|
} else {
|
||||||
throw new IOException("server didn't restart stream after successful auth");
|
throw new IOException("server didn't restart stream after successful auth");
|
||||||
|
@ -647,7 +648,8 @@ public class XmppConnection implements Runnable {
|
||||||
sendStartStream();
|
sendStartStream();
|
||||||
Log.d(Config.LOGTAG, account.getJid().toBareJid()+ ": TLS connection established");
|
Log.d(Config.LOGTAG, account.getJid().toBareJid()+ ": TLS connection established");
|
||||||
features.encryptionEnabled = true;
|
features.encryptionEnabled = true;
|
||||||
if (tagReader.readTag().isStart("stream")) {
|
final Tag tag = tagReader.readTag();
|
||||||
|
if (tag != null && tag.isStart("stream")) {
|
||||||
processStream();
|
processStream();
|
||||||
} else {
|
} else {
|
||||||
throw new IOException("server didn't restart stream after STARTTLS");
|
throw new IOException("server didn't restart stream after STARTTLS");
|
||||||
|
|
Loading…
Reference in New Issue