check if session is optional

This commit is contained in:
Daniel Gultsch 2016-05-31 23:09:45 +02:00
parent ea6a008b39
commit ffba53777c
1 changed files with 3 additions and 1 deletions

View File

@ -924,7 +924,8 @@ public class XmppConnection implements Runnable {
if (jid != null && jid.getContent() != null) {
try {
account.setResource(Jid.fromString(jid.getContent()).getResourcepart());
if (streamFeatures.hasChild("session")) {
if (streamFeatures.hasChild("session")
&& !streamFeatures.findChild("session").hasChild("optional")) {
sendStartSession();
} else {
sendPostBindInitialization();
@ -990,6 +991,7 @@ public class XmppConnection implements Runnable {
}
private void sendStartSession() {
Log.d(Config.LOGTAG,account.getJid().toBareJid()+": sending legacy session to outdated server");
final IqPacket startSession = new IqPacket(IqPacket.TYPE.SET);
startSession.addChild("session", "urn:ietf:params:xml:ns:xmpp-session");
this.sendUnmodifiedIqPacket(startSession, new OnIqPacketReceived() {