Browse Source

Export with sync off

main
M66B 6 years ago
parent
commit
608ce13423
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      app/src/main/java/eu/faircode/email/EntityAccount.java
  2. +1
    -1
      app/src/main/java/eu/faircode/email/EntityIdentity.java

+ 1
- 1
app/src/main/java/eu/faircode/email/EntityAccount.java 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);


+ 1
- 1
app/src/main/java/eu/faircode/email/EntityIdentity.java 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;
}


Loading…
Cancel
Save