Fixed export/import of folder navigation

pull/156/head
M66B 5 years ago
parent aaed5c547a
commit 34dd0be865

@ -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…
Cancel
Save