mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-19 13:48:58 +00:00
Fixed export/import of folder navigation
This commit is contained in:
parent
aaed5c547a
commit
34dd0be865
1 changed files with 4 additions and 0 deletions
|
@ -315,6 +315,7 @@ public class EntityFolder implements Serializable {
|
||||||
json.put("hide", hide);
|
json.put("hide", hide);
|
||||||
json.put("collapsed", collapsed);
|
json.put("collapsed", collapsed);
|
||||||
json.put("unified", unified);
|
json.put("unified", unified);
|
||||||
|
json.put("navigation", navigation);
|
||||||
json.put("notify", notify);
|
json.put("notify", notify);
|
||||||
return json;
|
return json;
|
||||||
}
|
}
|
||||||
|
@ -355,6 +356,9 @@ public class EntityFolder implements Serializable {
|
||||||
|
|
||||||
folder.unified = json.getBoolean("unified");
|
folder.unified = json.getBoolean("unified");
|
||||||
|
|
||||||
|
if (json.has("navigation"))
|
||||||
|
folder.navigation = json.getBoolean("navigation");
|
||||||
|
|
||||||
if (json.has("notify"))
|
if (json.has("notify"))
|
||||||
folder.notify = json.getBoolean("notify");
|
folder.notify = json.getBoolean("notify");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue