mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug #706
- Journal was recording deletions twice, once as a deletion and again as a modification to ""
This commit is contained in:
parent
d3447165c8
commit
dd8bceecf7
1 changed files with 2 additions and 1 deletions
|
@ -517,7 +517,8 @@ std::string taskInfoDifferences (const Task& before, const Task& after)
|
|||
|
||||
foreach (name, beforeAtts)
|
||||
if (*name != "uuid" &&
|
||||
before.get (*name) != after.get (*name))
|
||||
before.get (*name) != after.get (*name) &&
|
||||
before.get (*name) != "" && after.get (*name) != "")
|
||||
{
|
||||
if (*name == "depends")
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue