summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrh-bin/schedules.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/rh-bin/schedules.json b/rh-bin/schedules.json
index ca01cfc..df8250b 100755
--- a/rh-bin/schedules.json
+++ b/rh-bin/schedules.json
@@ -62,8 +62,9 @@ if(!defined $date) {
$errorstring = $shows[2];
} else {
for my $href (@shows) {
+ $href->{'START'}->set_time_zone("UTC");
my %show;
- $show{'start'} = $href->{'START'}->iso8601();
+ $show{'start'} = $href->{'START'}->iso8601() . "Z";
$show{'id'} = int($href->{'ID'});
$show{'title'} = $href->{'TITLE'};
$show{'len'} = int($href->{'LEN'});