Export with sync off

This commit is contained in:
M66B 2018-09-26 11:56:08 +00:00
parent a85797064a
commit 608ce13423
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ public class EntityAccount {
json.put("password", "");
json.put("auth_type", auth_type);
json.put("primary", primary);
json.put("synchronize", synchronize);
json.put("synchronize", false);
if (color != null)
json.put("color", color);
json.put("poll_interval", poll_interval);

View File

@ -84,7 +84,7 @@ public class EntityIdentity {
json.put("password", "");
json.put("auth_type", auth_type);
json.put("primary", primary);
json.put("synchronize", synchronize);
json.put("synchronize", false);
json.put("store_sent", store_sent);
return json;
}