mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-05 23:17:20 +02:00
parent
d3c6ddb87f
commit
a40d1bbf76
2 changed files with 4 additions and 3 deletions
2
AUTHORS
2
AUTHORS
|
@ -110,5 +110,5 @@ suggestions:
|
||||||
Arkady Grudzinsky
|
Arkady Grudzinsky
|
||||||
Bernhard B
|
Bernhard B
|
||||||
Aikido Guy
|
Aikido Guy
|
||||||
Gour D
|
Gour-Gadadhara Dasa
|
||||||
|
|
||||||
|
|
|
@ -311,8 +311,9 @@ void Task::parse (const std::string& input)
|
||||||
{
|
{
|
||||||
// Experimental legacy value translation.
|
// Experimental legacy value translation.
|
||||||
if (name == "recur" &&
|
if (name == "recur" &&
|
||||||
value == "1m")
|
digitsOnly (value.substr (0, value.length () - 1)) &&
|
||||||
value = "1mo";
|
value[value.length () - 1] == 'm')
|
||||||
|
value += 'o';
|
||||||
|
|
||||||
(*this)[name] = decode (json::decode (value));
|
(*this)[name] = decode (json::decode (value));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue