From: dms Date: Fri, 9 Feb 2001 16:29:59 +0000 (+0000) Subject: slight change to ChanConfList to make schedulers work again X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b7d8eae5699f9e77e4349b2627c38fea4b02c171;p=infobot.git slight change to ChanConfList to make schedulers work again git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@377 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/src/core.pl b/src/core.pl index dbe2e32..3c8a7d1 100644 --- a/src/core.pl +++ b/src/core.pl @@ -131,8 +131,16 @@ sub ChanConfList { return unless (defined $param); my %chan = &getChanConfList($param); - ### TODO: -option is included aswell though. - return keys %chan; + # what if we have it set on _default and a few channels with + # negative set? perhaps we should disable -blah settings to remove + # this mess. + + if (exists $chan{_default}) { + return keys %chanconf; + } else { + ### TODO: -option is included aswell though. + return keys %chan; + } } #####