summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2017-08-03 10:29:12 (GMT)
committerChristian Pointner <equinox@helsinki.at>2017-08-03 10:29:12 (GMT)
commit33671dc83e5442c459b23f5c28febda627cf3211 (patch)
treea1b216f7d379be3d000dccf6ea66cc3a3dce0008
parent3d6600807f77a05b87b4c6907e7934efdcf2fc53 (diff)
delay midnight shows by 2 seconds (not just one)
-rwxr-xr-xutils/rhrd-schedules2
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;