invoke statusChanged callback after syncronization

This commit is contained in:
Daniel Gultsch 2017-05-19 15:28:25 +02:00
parent 5a5eb5bdd3
commit 51d1223198

View file

@ -218,7 +218,8 @@ public class XmppConnection implements Runnable {
mXmppConnectionService = service; mXmppConnectionService = service;
} }
protected synchronized void changeStatus(final Account.State nextStatus) { protected void changeStatus(final Account.State nextStatus) {
synchronized (this) {
if (Thread.currentThread().isInterrupted()) { if (Thread.currentThread().isInterrupted()) {
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": not changing status to " + nextStatus + " because thread was interrupted"); Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": not changing status to " + nextStatus + " because thread was interrupted");
return; return;
@ -234,11 +235,14 @@ public class XmppConnection implements Runnable {
this.attempt = 0; this.attempt = 0;
} }
account.setStatus(nextStatus); account.setStatus(nextStatus);
} else {
return;
}
}
if (statusListener != null) { if (statusListener != null) {
statusListener.onStatusChanged(account); statusListener.onStatusChanged(account);
} }
} }
}
public void prepareNewConnection() { public void prepareNewConnection() {
this.lastConnect = SystemClock.elapsedRealtime(); this.lastConnect = SystemClock.elapsedRealtime();