about summary refs log tree commit homepage
path: root/lib/PublicInbox/ExtSearchIdx.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/ExtSearchIdx.pm')
-rw-r--r--lib/PublicInbox/ExtSearchIdx.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/ExtSearchIdx.pm b/lib/PublicInbox/ExtSearchIdx.pm
index 064d9939..d55d3db9 100644
--- a/lib/PublicInbox/ExtSearchIdx.pm
+++ b/lib/PublicInbox/ExtSearchIdx.pm
@@ -135,7 +135,7 @@ sub index_unseen ($) {
         my $oid = $new_smsg->{blob};
         my $ibx = delete $req->{ibx} or die 'BUG: {ibx} unset';
         $self->{oidx}->add_xref3($docid, $req->{xnum}, $oid, $ibx->eidx_key);
-        $idx->index_raw(undef, $eml, $new_smsg, $ibx->eidx_key);
+        $idx->index_eml($eml, $new_smsg, $ibx->eidx_key);
         check_batch_limit($req);
 }
 
@@ -437,7 +437,7 @@ sub _reindex_finalize ($$$) {
         my $top_smsg = pop @$stable;
         $top_smsg == $smsg or die 'BUG: top_smsg != smsg';
         my $ibx = _ibx_for($self, $sync, $smsg);
-        $idx->index_raw(undef, $eml, $smsg, $ibx->eidx_key);
+        $idx->index_eml($eml, $smsg, $ibx->eidx_key);
         for my $x (reverse @$stable) {
                 $ibx = _ibx_for($self, $sync, $x);
                 my $hdr = delete $x->{hdr} // die 'BUG: no {hdr}';