mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Task
- ::modify was setting the wrong attribute value, namely the original, not the one that had passed through the expression evaluator's intestines.
This commit is contained in:
parent
870e45be0d
commit
ac07189941
1 changed files with 1 additions and 1 deletions
|
@ -2126,7 +2126,7 @@ void Task::modify (modType type, bool text_required /* = false */)
|
|||
if (column->validate (value2))
|
||||
{
|
||||
context.debug (label + name + " <-- " + value2 + " <-- " + value);
|
||||
(*this).set (name, value);
|
||||
(*this).set (name, value2);
|
||||
++modCount;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue