Skip to content

Commit

Permalink
Merge pull request #1306 from metacpan/haarg/no-bad-ticket
Browse files Browse the repository at this point in the history
tickets script: don't try to add dist data that doesn't exist
  • Loading branch information
haarg authored Oct 30, 2024
2 parents 6b546bd + 664f108 commit add12c8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/MetaCPAN/Script/Tickets.pm
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,8 @@ sub parse_tsv {

my %summary;
while ( my $row = $tsv_parser->getline_hr($fh) ) {
next
if !$row->{dist};
$summary{ $row->{dist} }{'bugs'}{'rt'} = {
source => $self->rt_dist_url( $row->{dist} ),
active => $row->{active},
Expand Down

0 comments on commit add12c8

Please sign in to comment.