Skip to content

Commit 5695d79

Browse files
committed
RT tickets should be numeric (follow api change)
1 parent e5ec140 commit 5695d79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/tickets.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ ($tsv)
103103
next unless $row->{dist};
104104
$summary{ $row->{dist} }{'bugs'}{'rt'} = {
105105
source => _rt_dist_url( $row->{dist} ),
106-
active => $row->{active},
107-
closed => $row->{inactive},
106+
active => $row->{active} + 0,
107+
closed => $row->{inactive} + 0,
108108
map { $_ => $row->{$_} + 0 }
109109
grep { not /^(dist|active|inactive)$/ }
110110
keys %$row,

0 commit comments

Comments
 (0)