Added is completed check

This commit is contained in:
Keith Holliday 2017-05-02 10:06:34 -06:00
parent 2ca3c4db1f
commit 8af1982d2b

View file

@ -616,7 +616,7 @@ public class Task extends BaseModel {
}
public Boolean isDisplayedActive(int offset) {
if (this.isDue != null) {
if (this.isDue != null && !this.completed) {
return this.isDue;
}
return this.checkIfDue(offset) && !this.completed;