X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=cgi%2Fbugreport.cgi;h=ed5f9be74703eb70fbf423952c1bc4df137e6ebc;hb=f14350af3adf35feb4f3b628ffa9b13bc6f8d05a;hp=e090321e63d8719b7561b4faa53c75cc437b6c8c;hpb=a7c7ddad38320d0ac2830d480388a9992fabf7d0;p=debbugs.git diff --git a/cgi/bugreport.cgi b/cgi/bugreport.cgi index e090321..ed5f9be 100755 --- a/cgi/bugreport.cgi +++ b/cgi/bugreport.cgi @@ -267,7 +267,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;