mirror of https://github.com/M66B/FairEmail.git
Fixed export/import of folder navigation
This commit is contained in:
parent
aaed5c547a
commit
34dd0be865
|
@ -315,6 +315,7 @@ public class EntityFolder implements Serializable {
|
|||
json.put("hide", hide);
|
||||
json.put("collapsed", collapsed);
|
||||
json.put("unified", unified);
|
||||
json.put("navigation", navigation);
|
||||
json.put("notify", notify);
|
||||
return json;
|
||||
}
|
||||
|
@ -355,6 +356,9 @@ public class EntityFolder implements Serializable {
|
|||
|
||||
folder.unified = json.getBoolean("unified");
|
||||
|
||||
if (json.has("navigation"))
|
||||
folder.navigation = json.getBoolean("navigation");
|
||||
|
||||
if (json.has("notify"))
|
||||
folder.notify = json.getBoolean("notify");
|
||||
|
||||
|
|
Loading…
Reference in New Issue