diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-03-23 19:42:25 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-03-23 19:42:25 (GMT) |
commit | 9e001bc7110ade584800e24511403704832fb728 (patch) | |
tree | 3c77af560c000fcd47a6a5241e2ae79848956f8e /rh-bin | |
parent | 86b3eccf806b3193546b6f85a64b30446e501542 (diff) |
make id in showlist an integer
Diffstat (limited to 'rh-bin')
-rwxr-xr-x | rh-bin/showlist.json | 2 |
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; } |