Skip to content

Commit

Permalink
Merge pull request #63 from metacpan/mickey/tickets
Browse files Browse the repository at this point in the history
RT tickets should be numeric (follow api change)
  • Loading branch information
mickeyn authored Jan 29, 2025
2 parents e5ec140 + 5695d79 commit 1676d76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/tickets.pl
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ ($tsv)
next unless $row->{dist};
$summary{ $row->{dist} }{'bugs'}{'rt'} = {
source => _rt_dist_url( $row->{dist} ),
active => $row->{active},
closed => $row->{inactive},
active => $row->{active} + 0,
closed => $row->{inactive} + 0,
map { $_ => $row->{$_} + 0 }
grep { not /^(dist|active|inactive)$/ }
keys %$row,
Expand Down

0 comments on commit 1676d76

Please sign in to comment.