- Only 'recur' durations are stored in raw form.  All others resolve to seconds.
  Thanks to Uli Martens.
This commit is contained in:
Paul Beckingham 2012-07-12 00:14:23 -04:00
parent 550031f5d8
commit da9bd8faa9

View file

@ -574,7 +574,7 @@ void Command::modify_task (
// Deliberately storing the 'raw' value, which is necessary for
// durations like 'weekday'..
task.set (name, value);
task.set (name, name == "recur" ? value : result);
}
// Need handling for numeric types, used by UDAs.