Fixed export/import of folder navigation

This commit is contained in:
M66B 2019-04-30 08:48:36 +02:00
parent aaed5c547a
commit 34dd0be865
1 changed files with 4 additions and 0 deletions

View File

@ -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");