This fixes the issue where if the Next Recording is more than a week
and 1 day in the future, we'll report the wrong value for the Next
Recording.
+2016-08-02 Andrew Ruthven
+ Fix a long standing bug where if the Next Recording is a week
+ and one day in the future, the Next Recording only shows
+ the hours.
+
2016-08-02 Andrew Ruthven
Somewhere between Date::Manip v6.0 and v6.32 the behaviour for
DateCalc has changed, so that now a DateCalc will keep on
# print out the days and hours.
my $str;
if ($seconds > 24 * 3600) {
- $str = Delta_Format($delta, 0, '%dd Days, %hv Hours');
+ $str = Delta_Format($delta, 0, '%dh Days, %hv Hours');
} else {
$str = Delta_Format($delta, 0, '%hh Hours, %mv Minutes');
}