mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Bug #860
- Fixed bug #860, which prevented lower-case priority values from being accepted (thanks to Michelle Crane). - Added unit tests. - Also included ChangeLog updates from other fixes that were misseed.
This commit is contained in:
parent
aaa8c5e950
commit
45262be011
3 changed files with 71 additions and 0 deletions
|
@ -466,6 +466,12 @@ void Command::modify_task (
|
|||
}
|
||||
}
|
||||
|
||||
// Priorities are converted to upper case.
|
||||
else if (name == "priority")
|
||||
{
|
||||
task.set (name, upperCase (value));
|
||||
}
|
||||
|
||||
// Dates are special, maybe.
|
||||
else if (column->type () == "date")
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue