mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug - DOM lookup for 'id' was not supported
- Removed DOM caching, which appears to be a problem. - Added 'id' and 'uuid' to DOM::get, which were missing, and therefore caused all filters with sequences to fail. - Modified CmdInfo to load all tasks, until TDB2 is here.
This commit is contained in:
parent
41a6ff29c8
commit
58a04b9813
3 changed files with 41 additions and 69 deletions
|
@ -58,7 +58,7 @@ int CmdInfo::execute (std::string& output)
|
|||
std::vector <Task> tasks;
|
||||
context.tdb.lock (context.config.getBoolean ("locking"));
|
||||
handleRecurrence ();
|
||||
context.tdb.loadPending (tasks);
|
||||
context.tdb.load (tasks);
|
||||
context.tdb.commit ();
|
||||
context.tdb.unlock ();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue