Merge commit '79ace45187236afc736c60bc0a0e70f284bce36b' into kraken * commit '79ace45187236afc736c60bc0a0e70f284bce36b': Fix NPE in SyncManager
This commit is contained in:
commit
475b37f49d
@ -1180,8 +1180,10 @@ public class SyncManager extends Service implements Runnable {
|
||||
}
|
||||
|
||||
static private synchronized void shutdownConnectionManager() {
|
||||
sClientConnectionManager.shutdown();
|
||||
sClientConnectionManager = null;
|
||||
if (sClientConnectionManager != null) {
|
||||
sClientConnectionManager.shutdown();
|
||||
sClientConnectionManager = null;
|
||||
}
|
||||
}
|
||||
|
||||
public static void stopAccountSyncs(long acctId) {
|
||||
|
Loading…
Reference in New Issue
Block a user