Export/import on demand flag

This commit is contained in:
M66B 2019-12-10 20:37:12 +01:00
parent cb00767f3a
commit 130600e2f6
1 changed files with 3 additions and 0 deletions

View File

@ -185,6 +185,7 @@ public class EntityAccount extends EntityOrder implements Serializable {
json.put("color", color);
json.put("synchronize", synchronize);
json.put("ondemand", ondemand);
json.put("primary", primary);
json.put("notify", notify);
json.put("browse", browse);
@ -238,6 +239,8 @@ public class EntityAccount extends EntityOrder implements Serializable {
account.color = json.getInt("color");
account.synchronize = json.getBoolean("synchronize");
if (json.has("ondemand"))
account.ondemand = json.getBoolean("ondemand");
account.primary = json.getBoolean("primary");
if (json.has("notify"))
account.notify = json.getBoolean("notify");