State fix

This commit is contained in:
M66B 2019-02-28 18:47:06 +00:00
parent b8c4566304
commit faab364d1a
1 changed files with 5 additions and 2 deletions

View File

@ -115,7 +115,10 @@ public class EntityOperation {
operation.created = new Date().getTime();
operation.id = db.operation().insertOperation(operation);
if (account != null && account.ondemand) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean enabled = prefs.getBoolean("enabled", true);
if (account != null && (account.ondemand || !enabled)) {
db.folder().setFolderState(fid, "waiting");
db.folder().setFolderSyncState(fid, "manual");
} else
@ -123,7 +126,7 @@ public class EntityOperation {
if (account == null) // Outbox
ServiceSend.start(context);
else if (account.ondemand)
else if (account.ondemand || !enabled)
ServiceUI.process(context, fid);
Log.i("Queued sync folder=" + folder);