about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-04-19 14:48:59 -0900
committerEric Wong <e@80x24.org>2021-04-20 19:02:45 +0000
commitc192608e62699d19973c88f292d95c227579847c (patch)
treeb89291b08eb1fd3eea6fe64a5bc1723738e4947e
parent81bd80b8806ef92bdedff67ef97def2acac5583c (diff)
downloadpublic-inbox-c192608e62699d19973c88f292d95c227579847c.tar.gz
config: favor ->get_all when possible
It's slightly less code.
-rw-r--r--lib/PublicInbox/LeiUp.pm5
-rw-r--r--lib/PublicInbox/Watch.pm3
2 files changed, 3 insertions, 5 deletions
diff --git a/lib/PublicInbox/LeiUp.pm b/lib/PublicInbox/LeiUp.pm
index 23c5c606..63a7f996 100644
--- a/lib/PublicInbox/LeiUp.pm
+++ b/lib/PublicInbox/LeiUp.pm
@@ -25,10 +25,9 @@ sub lei_up {
         $lei->{opt}->{output} = $lss->{-cfg}->{'lei.q.output'} //
                 return $lei->fail("lei.q.output unset in $lss->{-f}");
 
-        my $to_avref = $lss->{-cfg}->can('_array');
         for my $k (qw(only include exclude)) {
-                my $v = $lss->{-cfg}->{"lei.q.$k"} // next;
-                $lei->{opt}->{$k} = $to_avref->($v);
+                my $v = $lss->{-cfg}->get_all("lei.q.$k") // next;
+                $lei->{opt}->{$k} = $v;
         }
         for my $k (qw(external local remote
                         import-remote import-before threads)) {
diff --git a/lib/PublicInbox/Watch.pm b/lib/PublicInbox/Watch.pm
index 05956cbb..86dae91f 100644
--- a/lib/PublicInbox/Watch.pm
+++ b/lib/PublicInbox/Watch.pm
@@ -53,8 +53,7 @@ sub new {
         # indefinitely...
         foreach my $pfx (qw(publicinboxwatch publicinboxlearn)) {
                 my $k = "$pfx.watchspam";
-                defined(my $dirs = $cfg->{$k}) or next;
-                $dirs = PublicInbox::Config::_array($dirs);
+                my $dirs = $cfg->get_all($k) // next;
                 for my $dir (@$dirs) {
                         my $uri;
                         if (is_maildir($dir)) {