]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Inbox.pm
search: get rid of most lookup_* subroutines
[public-inbox.git] / lib / PublicInbox / Inbox.pm
index 47b863094bae63964ff97afc84657473e5c8c75f..01aa500c35123debd5ce948c77904f9e07a4f152 100644 (file)
@@ -293,14 +293,20 @@ sub path_check {
        git($self)->check('HEAD:'.$path);
 }
 
+sub smsg_by_mid ($$) {
+       my ($self, $mid) = @_;
+       my $srch = search($self) or return;
+       # favor the Message-ID we used for the NNTP article number:
+       my $mm = mm($self) or return;
+       my $num = $mm->num_for($mid);
+       $srch->lookup_article($num);
+}
+
 sub msg_by_mid ($$;$) {
        my ($self, $mid, $ref) = @_;
        my $srch = search($self) or
-                       return msg_by_path($self, mid2path($mid), $ref);
-       my $smsg;
-       $srch->retry_reopen(sub {
-               $smsg = $srch->lookup_skeleton($mid) and $smsg->load_expand;
-       });
+               return msg_by_path($self, mid2path($mid), $ref);
+       my $smsg = smsg_by_mid($self, $mid);
        $smsg ? msg_by_smsg($self, $smsg, $ref) : undef;
 }