mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Task: Do not include recurring tasks into OVERDUE virtual tag
This commit is contained in:
parent
b3962bb13d
commit
15dea00eeb
1 changed files with 2 additions and 1 deletions
|
@ -503,7 +503,8 @@ bool Task::is_overdue () const
|
|||
Task::status status = getStatus ();
|
||||
|
||||
if (status != Task::completed &&
|
||||
status != Task::deleted)
|
||||
status != Task::deleted &&
|
||||
status != Task::recurring)
|
||||
{
|
||||
Task::dateState state = getDateState ("due");
|
||||
if (state == dateEarlierToday ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue