Skip to content

Commit

Permalink
Merge pull request #1342 from metacpan/haarg/numeric-rt-tickets
Browse files Browse the repository at this point in the history
RT ticket counts should be numeric
  • Loading branch information
mickeyn authored Jan 29, 2025
2 parents 0b2f286 + 1cb5abc commit 554cbe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/MetaCPAN/Script/Tickets.pm
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ sub parse_tsv {
if !$row->{dist};
$summary{ $row->{dist} }{'bugs'}{'rt'} = {
source => $self->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 554cbe0

Please sign in to comment.