mirror of https://github.com/M66B/FairEmail.git
Fixed import/export
This commit is contained in:
parent
7ea9379e59
commit
77fabb2d37
|
@ -91,6 +91,8 @@ public class EntityAccount {
|
|||
json.put("name", name);
|
||||
json.put("signature", signature);
|
||||
json.put("host", host);
|
||||
json.put("starttls", starttls);
|
||||
json.put("insecure", insecure);
|
||||
json.put("port", port);
|
||||
json.put("user", user);
|
||||
json.put("password", "");
|
||||
|
@ -110,6 +112,8 @@ public class EntityAccount {
|
|||
if (json.has("signature"))
|
||||
account.signature = json.getString("signature");
|
||||
account.host = json.getString("host");
|
||||
account.starttls = (json.has("starttls") && json.getBoolean("starttls"));
|
||||
account.insecure = (json.has("insecure") && json.getBoolean("insecure"));
|
||||
account.port = json.getInt("port");
|
||||
account.user = json.getString("user");
|
||||
account.password = json.getString("password");
|
||||
|
|
|
@ -82,6 +82,7 @@ public class EntityIdentity {
|
|||
json.put("host", host);
|
||||
json.put("port", port);
|
||||
json.put("starttls", starttls);
|
||||
json.put("insecure", insecure);
|
||||
json.put("user", user);
|
||||
json.put("password", "");
|
||||
json.put("auth_type", auth_type);
|
||||
|
@ -100,6 +101,7 @@ public class EntityIdentity {
|
|||
identity.host = json.getString("host");
|
||||
identity.port = json.getInt("port");
|
||||
identity.starttls = json.getBoolean("starttls");
|
||||
identity.insecure = (json.has("insecure") && json.getBoolean("insecure"));
|
||||
identity.user = json.getString("user");
|
||||
identity.password = json.getString("password");
|
||||
identity.auth_type = json.getInt("auth_type");
|
||||
|
|
|
@ -106,6 +106,8 @@ public class FragmentSetup extends FragmentEx {
|
|||
"light",
|
||||
"browse",
|
||||
"swipe",
|
||||
"compat",
|
||||
"insecure",
|
||||
"sort"
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue