]> git.ipfire.org Git - thirdparty/public-inbox.git/commitdiff
searchidx: fix redundant `in' in warning message
authorEric Wong <e@80x24.org>
Wed, 4 Oct 2023 03:49:33 +0000 (03:49 +0000)
committerEric Wong <e@80x24.org>
Wed, 4 Oct 2023 17:46:49 +0000 (17:46 +0000)
Fortunately, I've never actually seen that message...

lib/PublicInbox/SearchIdx.pm

index 2a0e06d12a3065fd0773f7877b7e6286af88b1cd..8a571cfbf4f0939fca5a65422577f379eb357ca0 100644 (file)
@@ -709,7 +709,7 @@ sub xdb_remove {
        my $xdb = $self->{xdb} // die 'BUG: missing {xdb}';
        for my $docid (@docids) {
                eval { $xdb->delete_document($docid) };
-               warn "E: #$docid not in in Xapian? $@\n" if $@;
+               warn "E: #$docid not in Xapian? $@\n" if $@;
        }
 }