From: Eric Wong Date: Thu, 26 Aug 2021 12:33:36 +0000 (+0000) Subject: config: do not parse altid for extindex X-Git-Tag: v1.7.0~485 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=73aa20c90fafd0616bed04d4242be796229c19bb config: do not parse altid for extindex There's currently no support for altid with extindex, and there's likely no legacy precedent for using altid like there is with single public-inboxes. --- diff --git a/lib/PublicInbox/Config.pm b/lib/PublicInbox/Config.pm index 7aa1f6c8..b3e00ae0 100644 --- a/lib/PublicInbox/Config.pm +++ b/lib/PublicInbox/Config.pm @@ -525,7 +525,7 @@ sub _fill_ei ($$) { my $v = get_1($self, $pfx, $k) // next; $es->{$k} = $v; } - for my $k (qw(altid coderepo hide url infourl)) { + for my $k (qw(coderepo hide url infourl)) { my $v = $self->{"$pfx.$k"} // next; $es->{$k} = _array($v); }