mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
parent
b4b7233b6c
commit
f10c89dbea
1 changed files with 3 additions and 6 deletions
|
@ -1388,7 +1388,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
|||
state.setBackoff(CONNECT_BACKOFF_START);
|
||||
if (account.backoff_until != null)
|
||||
db.account().setAccountBackoff(account.id, null);
|
||||
while (state.isRunning()) {
|
||||
while (state.isRunning() && currentThread.equals(accountThread)) {
|
||||
state.reset();
|
||||
Log.i(account.name + " run thread=" + currentThread);
|
||||
|
||||
|
@ -2476,11 +2476,8 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
|||
accountThread = db.account().getAccountThread(account.id);
|
||||
}
|
||||
|
||||
if (!currentThread.equals(accountThread) && accountThread != null) {
|
||||
String msg = account.name + " orphan thread id=" + currentThread + "/" + accountThread;
|
||||
EntityLog.log(this, msg);
|
||||
Log.e(msg);
|
||||
}
|
||||
if (!currentThread.equals(accountThread) && accountThread != null)
|
||||
Log.e(account.name + " orphan thread id=" + currentThread + "/" + accountThread);
|
||||
} finally {
|
||||
EntityLog.log(this, EntityLog.Type.Account, account,
|
||||
account.name + " stopped running=" + state.isRunning());
|
||||
|
|
Loading…
Reference in a new issue