]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Feed.pm
rename PublicInbox::SearchMsg => PublicInbox::Smsg
[public-inbox.git] / lib / PublicInbox / Feed.pm
index ae69af368e4d38cc111e51a37ee1dcc1fd62997e..07347c63239f6af428241d12a23789c75ee99bed 100644 (file)
@@ -8,7 +8,7 @@ use warnings;
 use PublicInbox::MIME;
 use PublicInbox::View;
 use PublicInbox::WwwAtomStream;
-use PublicInbox::SearchMsg; # this loads w/o Search::Xapian
+use PublicInbox::Smsg; # this loads w/o Search::Xapian
 
 sub generate_i {
        my ($ctx) = @_;
@@ -142,7 +142,7 @@ sub recent_msgs {
        }
 
        $ctx->{next_page} = "r=$last_commit" if $last_commit;
-       [ map { bless {blob => $_ }, 'PublicInbox::SearchMsg' } @oids ];
+       [ map { bless {blob => $_ }, 'PublicInbox::Smsg' } @oids ];
 }
 
 1;