mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
DOM: Missing value UDAs now return "", not "''".
This commit is contained in:
parent
e69a44e788
commit
8adb6ae889
1 changed files with 2 additions and 2 deletions
|
@ -222,7 +222,7 @@ bool DOM::get (const std::string& name, const Task& task, Variant& value)
|
|||
{
|
||||
if (column->is_uda () && ! task.has (canonical))
|
||||
{
|
||||
value = Variant ("''");
|
||||
value = Variant ("");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -301,7 +301,7 @@ bool DOM::get (const std::string& name, const Task& task, Variant& value)
|
|||
{
|
||||
if (column->is_uda () && ! ref.has (canonical))
|
||||
{
|
||||
value = Variant ("''");
|
||||
value = Variant ("");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue