about summary refs log tree commit homepage
path: root/lib/PublicInbox/SearchThread.pm
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-04-01 06:16:20 +0000
committerEric Wong <e@yhbt.net>2020-04-02 10:27:45 +0000
commit906393b801050e303d2ec2a660c85de4a5fa4740 (patch)
tree4fcd132c77cd8eecd09eb2007ecfaa252f48e031 /lib/PublicInbox/SearchThread.pm
parenteaa56562a0a09d9e8ecf3f2371dda20645bd82f3 (diff)
downloadpublic-inbox-906393b801050e303d2ec2a660c85de4a5fa4740.tar.gz
This allows us to consistently enforce the same Message-ID
extraction rules everywhere and makes it easier for us to
make changes in the future.

Update scripts/ssoma-replay, as well, but don't rely on
PublicInbox::* modules in that since it's legacy and
public-inbox was never a dependency of ssoma.
Diffstat (limited to 'lib/PublicInbox/SearchThread.pm')
-rw-r--r--lib/PublicInbox/SearchThread.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/PublicInbox/SearchThread.pm b/lib/PublicInbox/SearchThread.pm
index ab2f1a84..8b2cb805 100644
--- a/lib/PublicInbox/SearchThread.pm
+++ b/lib/PublicInbox/SearchThread.pm
@@ -20,6 +20,7 @@
 package PublicInbox::SearchThread;
 use strict;
 use warnings;
+use PublicInbox::MID qw($MID_EXTRACT);
 
 sub thread {
         my ($msgs, $ordersub, $ctx) = @_;
@@ -67,7 +68,7 @@ sub _add_message ($$) {
         # everything is perfectly referenced, only the last ref
         # matters.
         my $prev;
-        foreach my $ref ($refs =~ m/<([^>]+)>/g) {
+        foreach my $ref ($refs =~ m/$MID_EXTRACT/go) {
                 # Find a Container object for the given Message-ID
                 my $cont = _get_cont_for_id($id_table, $ref);