Store folder is subscribed

This commit is contained in:
M66B
2019-04-25 17:23:56 +02:00
parent c36e8c5438
commit a1750c4cac
5 changed files with 1741 additions and 1 deletions

View File

@@ -76,6 +76,7 @@ public class EntityFolder implements Serializable {
public Boolean poll = false;
@NonNull
public Boolean download = true;
public Boolean subscribed;
@NonNull
public Integer sync_days;
@NonNull
@@ -259,6 +260,7 @@ public class EntityFolder implements Serializable {
this.synchronize.equals(other.synchronize) &&
this.poll.equals(other.poll) &&
this.download.equals(other.download) &&
Objects.equals(this.subscribed, other.subscribed) &&
this.sync_days.equals(other.sync_days) &&
this.keep_days.equals(other.keep_days) &&
Objects.equals(this.display, other.display) &&