about summary refs log tree commit homepage
path: root/lib/PublicInbox/Config.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/Config.pm')
-rw-r--r--lib/PublicInbox/Config.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/Config.pm b/lib/PublicInbox/Config.pm
index ee5322fe..5e7a9f2b 100644
--- a/lib/PublicInbox/Config.pm
+++ b/lib/PublicInbox/Config.pm
@@ -424,7 +424,7 @@ sub _fill_ibx {
         my ($self, $name) = @_;
         my $pfx = "publicinbox.$name";
         my $ibx = {};
-        for my $k (qw(watch nntpserver)) {
+        for my $k (qw(watch)) {
                 my $v = $self->{"$pfx.$k"};
                 $ibx->{$k} = $v if defined $v;
         }
@@ -451,7 +451,7 @@ sub _fill_ibx {
         # TODO: more arrays, we should support multi-value for
         # more things to encourage decentralization
         for my $k (qw(address altid nntpmirror coderepo hide listid url
-                        infourl watchheader)) {
+                        infourl watchheader nntpserver)) {
                 my $v = $self->{"$pfx.$k"} // next;
                 $ibx->{$k} = _array($v);
         }