mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-20 12:49:02 +00:00
Added is completed check
This commit is contained in:
parent
2ca3c4db1f
commit
8af1982d2b
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue