about summary refs log tree commit homepage
path: root/lib/PublicInbox/Import.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/Import.pm')
-rw-r--r--lib/PublicInbox/Import.pm9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/PublicInbox/Import.pm b/lib/PublicInbox/Import.pm
index 12abf399..81a38fb6 100644
--- a/lib/PublicInbox/Import.pm
+++ b/lib/PublicInbox/Import.pm
@@ -367,10 +367,14 @@ sub add {
         my @ct = msg_timestamp($hdr);
         my $author_time_raw = git_timestamp(@at);
         my $commit_time_raw = git_timestamp(@ct);
+
         my $subject = $mime->header('Subject');
         $subject = '(no subject)' unless defined $subject;
-        my $path_type = $self->{path_type};
+        # Mime decoding can create nulls replace them with spaces to protect git
+        $subject =~ tr/\0/ /;
+        utf8::encode($subject);
 
+        my $path_type = $self->{path_type};
         my $path;
         if ($path_type eq '2/38') {
                 $path = mid2path(v1_mid0($mime));
@@ -411,9 +415,6 @@ sub add {
                 print $w "reset $ref\n" or wfail;
         }
 
-        # Mime decoding can create nulls replace them with spaces to protect git
-        $subject =~ tr/\0/ /;
-        utf8::encode($subject);
         print $w "commit $ref\nmark :$commit\n",
                 "author $name <$email> $author_time_raw\n",
                 "committer $self->{ident} $commit_time_raw\n" or wfail;