about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiQuery.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-01-10 12:14:59 +0000
committerEric Wong <e@80x24.org>2021-01-12 03:51:42 +0000
commitf4cf089b427d07bedb80fcfbe79d84234ad92a75 (patch)
tree2aa3f5dea1dc8dc7ae754ea80b27738142cb8820 /lib/PublicInbox/LeiQuery.pm
parent4ff570e5c3cfb33aff3ca6ad674958d9dd2abda9 (diff)
downloadpublic-inbox-f4cf089b427d07bedb80fcfbe79d84234ad92a75.tar.gz
We don't want duplicate messages in results overviews, either.
Diffstat (limited to 'lib/PublicInbox/LeiQuery.pm')
-rw-r--r--lib/PublicInbox/LeiQuery.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/PublicInbox/LeiQuery.pm b/lib/PublicInbox/LeiQuery.pm
index d14da1bc..f69dccad 100644
--- a/lib/PublicInbox/LeiQuery.pm
+++ b/lib/PublicInbox/LeiQuery.pm
@@ -69,6 +69,8 @@ sub lei_q {
         } @argv);
         $opt->{limit} //= 10000;
         my $lxs;
+        require PublicInbox::LeiDedupe;
+        my $dd = PublicInbox::LeiDedupe->new($self);
 
         # --local is enabled by default
         my @src = $opt->{'local'} ? ($sto->search) : ();
@@ -135,6 +137,7 @@ sub lei_q {
                 delete @$smsg{qw(tid num)}; # only makes sense if single src
                 chomp($buf = $json->encode(_smsg_unbless($smsg)));
         };
+        $dd->prepare_dedupe;
         for my $src (@src) {
                 my $srch = $src->search;
                 my $over = $src->over;
@@ -145,6 +148,7 @@ sub lei_q {
                 if ($smsg_for) {
                         for my $it ($mset->items) {
                                 my $smsg = $smsg_for->($srch, $it) or next;
+                                next if $dd->is_smsg_dup($smsg);
                                 $self->out($buf .= $ORS) if defined $buf;
                                 $smsg->{relevance} = get_pct($it);
                                 $emit_cb->($smsg);
@@ -160,6 +164,7 @@ sub lei_q {
                         while ($over && $over->expand_thread($ctx)) {
                                 for my $n (@{$ctx->{xids}}) {
                                         my $t = $over->get_art($n) or next;
+                                        next if $dd->is_smsg_dup($t);
                                         if (my $p = delete $n2p{$t->{num}}) {
                                                 $t->{relevance} = $p;
                                         }