Browse Source

Fixed folder compare

main
M66B 5 years ago
parent
commit
c0fa6acc33
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/src/main/java/eu/faircode/email/EntityFolder.java

+ 1
- 1
app/src/main/java/eu/faircode/email/EntityFolder.java View File

@ -137,7 +137,7 @@ public class EntityFolder implements Parcelable {
this.name.equals(other.name) &&
this.type.equals(other.type) &&
this.synchronize.equals(other.synchronize) &&
this.after.equals(other.after) &&
(this.poll_interval == null ? other.poll_interval == null : this.poll_interval.equals(other.poll_interval)) && this.after.equals(other.after) &&
(this.display == null ? other.display == null : this.display.equals(other.display)) &&
this.hide == other.hide &&
this.unified == other.unified &&


Loading…
Cancel
Save