X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FAltId.pm;h=b4daaed2b64c56355ba539bebd60f1e173c7c350;hb=3c39f9c942a6975245fda878e9b957d8d3367662;hp=300bdc0b49fbda3d561c4037ab812ce732ac79b1;hpb=b0e5062d43a96372801713ef78a78d6a1bc852bc;p=public-inbox.git diff --git a/lib/PublicInbox/AltId.pm b/lib/PublicInbox/AltId.pm index 300bdc0b..b4daaed2 100644 --- a/lib/PublicInbox/AltId.pm +++ b/lib/PublicInbox/AltId.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2016-2018 all contributors +# Copyright (C) 2016-2019 all contributors # License: AGPL-3.0+ # Used for giving serial numbers to messages. This can be tied to @@ -18,7 +18,7 @@ use URI::Escape qw(uri_unescape); # The PREFIX will be a searchable boolean prefix in Xapian # Example: serial:gmane:file=/path/to/altmsgmap.sqlite3 sub new { - my ($class, $inbox, $spec, $writable) = @_; + my ($class, $ibx, $spec, $writable) = @_; my ($type, $prefix, $query) = split(/:/, $spec, 3); $type eq 'serial' or die "non-serial not supported, yet\n"; @@ -31,10 +31,10 @@ sub new { } split(/[&;]/, $query); my $f = $params{file} or die "file: required for $type spec $spec\n"; unless (index($f, '/') == 0) { - if (($inbox->{version} || 1) == 1) { - $f = "$inbox->{mainrepo}/public-inbox/$f"; + if (($ibx->{version} || 1) == 1) { + $f = "$ibx->{inboxdir}/public-inbox/$f"; } else { - $f = "$inbox->{mainrepo}/$f"; + $f = "$ibx->{inboxdir}/$f"; } } bless {