mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-09 18:50:39 +02:00
Recurrence: Broke out handleUntil as a separate function
- This means until porocesing is no longer controlled by rc.recurrence, which was never intended.
This commit is contained in:
parent
e991004c43
commit
97b038ce29
14 changed files with 40 additions and 12 deletions
|
@ -60,6 +60,7 @@ int CmdProjects::execute (std::string& output)
|
|||
int rc = 0;
|
||||
|
||||
// Get all the tasks.
|
||||
handleUntil ();
|
||||
handleRecurrence ();
|
||||
auto tasks = context.tdb2.pending.get_tasks ();
|
||||
|
||||
|
@ -178,6 +179,7 @@ CmdCompletionProjects::CmdCompletionProjects ()
|
|||
int CmdCompletionProjects::execute (std::string& output)
|
||||
{
|
||||
// Get all the tasks.
|
||||
handleUntil ();
|
||||
handleRecurrence ();
|
||||
auto tasks = context.tdb2.pending.get_tasks ();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue