summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-03-23 19:42:25 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-03-23 19:42:25 (GMT)
commit9e001bc7110ade584800e24511403704832fb728 (patch)
tree3c77af560c000fcd47a6a5241e2ae79848956f8e
parent86b3eccf806b3193546b6f85a64b30446e501542 (diff)
make id in showlist an integer
-rwxr-xr-xrh-bin/showlist.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/rh-bin/showlist.json b/rh-bin/showlist.json
index 8c28ad8..507817d 100755
--- a/rh-bin/showlist.json
+++ b/rh-bin/showlist.json
@@ -40,7 +40,7 @@ if(defined $ctx) {
} else {
for my $href (@shows) {
my %show;
- $show{'id'} = $href->{'ID'};
+ $show{'id'} = int($href->{'ID'});
$show{'title'} = $href->{'ID'} . " | " . $href->{'TITLE'};
push @showlist, \%show;
}