]> Sergey Matveev's repositories - public-inbox.git/blobdiff - script/public-inbox-edit
remove unnecessary ->header_obj calls
[public-inbox.git] / script / public-inbox-edit
index 2d3c4af4d38827f1c3068190b38fa787c2aad5eb..240beb3a168ff3e6c6a35e4814b3cab144761642 100755 (executable)
@@ -93,7 +93,7 @@ Multiple messages with different content found matching
        }
 } else {
        my $eml = eml_from_path($file) or die "open($file) failed: $!";
-       my $mids = mids($eml->header_obj);
+       my $mids = mids($eml);
        find_mid($found, $_, \@ibxs) for (@$mids); # populates $found
        my $chash = content_hash($eml);
        my $to_edit = $found->{$chash};
@@ -214,9 +214,9 @@ W: possible message boundary splitting error
 
        # allow changing Received: and maybe other headers which can
        # contain sensitive info.
-       my $nhdr = $new_mime->header_obj;
-       my $ohdr = $old_mime->header_obj;
-       if (($nhdr->as_string eq $ohdr->as_string) &&
+       my $nhdr = $new_mime->header_obj->as_string;
+       my $ohdr = $old_mime->header_obj->as_string;
+       if (($nhdr eq $ohdr) &&
            (content_hash($new_mime) eq content_hash($old_mime))) {
                warn "No change detected to:\n", show_cmd($ibx, $smsg);