Bug Fix - due date, colorization
- Fixed bug that caused colorization to be way, way off. Silly mistake. - Fixed bug whereby due dates and durations were stored as-is, but should have been converted. - On a related note, added Date::toEpochString, Duration::operator (std::string).
This commit is contained in:
@@ -343,13 +343,13 @@ bool Att::validNameValue (
|
||||
name == "until")
|
||||
{
|
||||
if (value != "")
|
||||
Date (value);
|
||||
value = Date (value).toEpochString ();
|
||||
}
|
||||
|
||||
else if (name == "recur")
|
||||
{
|
||||
if (value != "")
|
||||
Duration (value);
|
||||
value = (std::string) Duration (value);
|
||||
}
|
||||
|
||||
else if (name == "limit")
|
||||
|
||||
Reference in New Issue
Block a user