mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 13:44:40 +00:00
Fixed inheriting folder properties
This commit is contained in:
parent
ff81e96432
commit
8e90f3a1ed
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue