disconnet in background thread
This commit is contained in:
parent
e956c7b2a2
commit
be38b1e5f4
|
@ -722,7 +722,13 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
|||
for (final Account account : accounts) {
|
||||
databaseBackend.writeRoster(account.getRoster());
|
||||
if (account.getXmppConnection() != null) {
|
||||
disconnect(account, false);
|
||||
new Thread(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
disconnect(account, false);
|
||||
}
|
||||
}).start();
|
||||
|
||||
}
|
||||
}
|
||||
Context context = getApplicationContext();
|
||||
|
|
Loading…
Reference in a new issue