X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=cgi%2Fbugreport.cgi;fp=cgi%2Fbugreport.cgi;h=a33863ff62431eb66463f3671418c8b8207e6844;hb=6c4913e069f5bfbaa2d64055050fe73561bc3e49;hp=87f688e368fbf167b784ccedba4e1cba2c8bb319;hpb=0cd65ae088d30ad6c5aa6df8bd343b4468b2d2ec;p=debbugs.git diff --git a/cgi/bugreport.cgi b/cgi/bugreport.cgi index 87f688e..a33863f 100755 --- a/cgi/bugreport.cgi +++ b/cgi/bugreport.cgi @@ -305,7 +305,7 @@ END my $record_wanted_anyway = 0; my ($msg_id) = record_regex($record,qr/^Message-Id:\s+<(.+)>/im); next if defined $msg_id and exists $seen_message_ids{$msg_id}; - next if defined $msg_id and $msg_id =~/handler\..+\.ack(?:info|done)?\@/; + next if not defined $msg and defined $msg_id and $msg_id =~/handler\..+\.ack(?:info|done)?\@/; $record_wanted_anyway = 1 if record_regex($record,qr/^Received: \(at control\)/); next if not $boring and not $record->{type} eq $wanted_type and not $record_wanted_anyway and @records > 1; $seen_message_ids{$msg_id} = 1 if defined $msg_id;