The C++ version does, so the Perl/XS version should, too;
even if we intentionally avoid using it right now.
---
 lib/PublicInbox/XapHelper.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/PublicInbox/XapHelper.pm b/lib/PublicInbox/XapHelper.pm
index 1ee918e3..4157600f 100644
--- a/lib/PublicInbox/XapHelper.pm
+++ b/lib/PublicInbox/XapHelper.pm
@@ -78,7 +78,7 @@ sub cmd_dump_ibx {
        my ($req, $ibx_id, $qry_str) = @_;
        $qry_str // return warn('usage: dump_ibx [OPTIONS] IBX_ID QRY_STR');
        $req->{A} or return warn('dump_ibx requires -A PREFIX');
-       my $max = $req->{srch}->{xdb}->get_doccount;
+       my $max = $req->{'m'} // $req->{srch}->{xdb}->get_doccount;
        my $opt = { relevance => -1, limit => $max, offset => $req->{o} // 0 };
        $opt->{eidx_key} = $req->{O} if defined $req->{O};
        my $mset = $req->{srch}->mset($qry_str, $opt);

Reply via email to