Fixed inheriting folder properties

This commit is contained in:
M66B 2023-04-25 16:07:39 +02:00
parent ff81e96432
commit 8e90f3a1ed
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
void inheritFrom(EntityFolder parent) {
if (parent == null)
return;
if (!EntityFolder.USER.equals(parent.type))
if (!EntityFolder.USER.equals(type))
return;
this.synchronize = parent.synchronize;