Reload on delete only if synchronizing

This commit is contained in:
M66B
2018-11-13 10:27:25 +01:00
parent c8a76bf1be
commit 9a7802d319
2 changed files with 10 additions and 4 deletions

View File

@@ -840,8 +840,11 @@ public class FragmentAccount extends FragmentEx {
@Override
protected Void onLoad(Context context, Bundle args) {
long id = args.getLong("id");
DB.getInstance(context).account().deleteAccount(id);
ServiceSynchronize.reload(getContext(), "delete account");
DB db = DB.getInstance(context);
EntityAccount account = db.account().getAccount(id);
db.account().deleteAccount(id);
if (account.synchronize)
ServiceSynchronize.reload(getContext(), "delete account");
return null;
}