explictly set account status to offline when waiting for push

This commit is contained in:
Daniel Gultsch 2016-08-09 17:25:45 +02:00
parent 121312d103
commit a51de9fcd9
1 changed files with 2 additions and 1 deletions

View File

@ -1327,8 +1327,9 @@ public class XmppConnection implements Runnable {
}
socket.close();
Log.d(Config.LOGTAG,account.getJid().toBareJid()+": closed tcp without closing stream");
changeStatus(Account.State.OFFLINE);
} catch (IOException | InterruptedException e) {
return;
Log.d(Config.LOGTAG,account.getJid().toBareJid()+": error while closing socket for waitForPush()");
}
}
}).start();