don't wait for disco when not having stream managment

This commit is contained in:
Daniel Gultsch 2016-09-21 12:55:40 +02:00
parent 61f58b3dbd
commit 401759cdc7
1 changed files with 1 additions and 1 deletions

View File

@ -1072,7 +1072,7 @@ public class XmppConnection implements Runnable {
this.disco.clear();
}
mPendingServiceDiscoveries.set(0);
mWaitForDisco.set(mServerIdentity != Identity.NIMBUZZ);
mWaitForDisco.set(mServerIdentity != Identity.NIMBUZZ && smVersion != 0);
lastDiscoStarted = SystemClock.elapsedRealtime();
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": starting service discovery");
mXmppConnectionService.scheduleWakeUpCall(Config.CONNECT_DISCO_TIMEOUT, account.getUuid().hashCode());