diff options
author | Christian Pointner <equinox@helsinki.at> | 2017-08-03 10:29:12 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2017-08-03 10:29:12 (GMT) |
commit | 33671dc83e5442c459b23f5c28febda627cf3211 (patch) | |
tree | a1b216f7d379be3d000dccf6ea66cc3a3dce0008 /utils/rhrd-schedules | |
parent | 3d6600807f77a05b87b4c6907e7934efdcf2fc53 (diff) |
delay midnight shows by 2 seconds (not just one)
Diffstat (limited to 'utils/rhrd-schedules')
-rwxr-xr-x | utils/rhrd-schedules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/rhrd-schedules b/utils/rhrd-schedules index 4e38872..60bea3d 100755 --- a/utils/rhrd-schedules +++ b/utils/rhrd-schedules @@ -105,7 +105,7 @@ sub generate # Rivendell has problems with events starting at midnight if($start->hour == 0 && $start->minute == 0 && $start->second == 0) { - $start->set_second(1); + $start->set_second(2); } my $show = {}; $show->{'ID'} = $showid; |