about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiNoteEvent.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-09-27 02:53:07 -0500
committerEric Wong <e@80x24.org>2021-09-27 09:22:49 +0000
commit996de3c67d490b4052bd16179b229b30c2f890f8 (patch)
treed9f58dbdd5b5889640ddc7d2a6b7cf39acff8c90 /lib/PublicInbox/LeiNoteEvent.pm
parent751df49e7db8ba770dff28fb701b31c57ca200e2 (diff)
downloadpublic-inbox-996de3c67d490b4052bd16179b229b30c2f890f8.tar.gz
Instead of passing the prefix section and key separately, pass
them together as is commonly done with git-config(1) usage as
well as our ->get_all API.  This inconsistency in the get_1 API
is a needless footgun and confused me a bit while working on
"lei up" the other week.
Diffstat (limited to 'lib/PublicInbox/LeiNoteEvent.pm')
-rw-r--r--lib/PublicInbox/LeiNoteEvent.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/LeiNoteEvent.pm b/lib/PublicInbox/LeiNoteEvent.pm
index 2a7b52c1..1b714dae 100644
--- a/lib/PublicInbox/LeiNoteEvent.pm
+++ b/lib/PublicInbox/LeiNoteEvent.pm
@@ -73,7 +73,7 @@ sub lei_note_event {
         $lei->{opt}->{quiet} = 1;
         eval { $lms->arg2folder($lei, [ $folder ]) };
         return if $@;
-        my $state = $cfg->get_1("watch.$folder", 'state') // 'tag-rw';
+        my $state = $cfg->get_1("watch.$folder.state") // 'tag-rw';
         return if $state eq 'pause';
         return $lms->clear_src($folder, \$bn) if $new_cur eq '';
         $lms->lms_pause;