about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-01-05 23:23:33 +0000
committerEric Wong <e@yhbt.net>2020-01-06 10:20:51 +0000
commitb58d0f75857b8e3372cfd516f248ef70c9eea150 (patch)
treed494dc2363fda5f7bd73122ff55f7648888fa041
parentb503e583ede0b35a30aa3f14096c0605e3032439 (diff)
downloadpublic-inbox-b58d0f75857b8e3372cfd516f248ef70c9eea150.tar.gz
AltId requires Msgmap to work, which requires SQLite.  Search
also requires SQLite3 (for Over), nowadays, so there's no reason
for us to lazy-load Msgmap and SQLite anymore.
-rw-r--r--lib/PublicInbox/AltId.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/PublicInbox/AltId.pm b/lib/PublicInbox/AltId.pm
index b4daaed2..6b03d603 100644
--- a/lib/PublicInbox/AltId.pm
+++ b/lib/PublicInbox/AltId.pm
@@ -13,6 +13,7 @@ package PublicInbox::AltId;
 use strict;
 use warnings;
 use URI::Escape qw(uri_unescape);
+use PublicInbox::Msgmap;
 
 # spec: TYPE:PREFIX:param1=value1&param2=value2&...
 # The PREFIX will be a searchable boolean prefix in Xapian
@@ -22,8 +23,6 @@ sub new {
         my ($type, $prefix, $query) = split(/:/, $spec, 3);
         $type eq 'serial' or die "non-serial not supported, yet\n";
 
-        require PublicInbox::Msgmap;
-
         my %params = map {
                 my ($k, $v) = split(/=/, uri_unescape($_), 2);
                 $v = '' unless defined $v;