mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-10 12:59:22 +01:00
We shouldn't try to get ChannelValues when not given a channel.
This commit is contained in:
parent
ca8100605c
commit
8b563876ea
@ -1154,8 +1154,11 @@ class Privmsg(irclib.IrcCallback):
|
||||
names = registry.split(name)
|
||||
for name in names:
|
||||
group = group.get(name)
|
||||
if channel is not None and ircutils.isChannel(channel):
|
||||
group = group.get(channel)
|
||||
if channel is not None:
|
||||
if ircutils.isChannel(channel):
|
||||
group = group.get(channel)
|
||||
else:
|
||||
self.log.debug('registryValue got channel=%r', channel)
|
||||
if value:
|
||||
return group()
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user