mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 03:33:11 +01:00
Check that channels are valid before trying to join them.
This commit is contained in:
parent
9c0b26ebb0
commit
0081c27812
@ -134,6 +134,9 @@ class Admin(privmsgs.CapabilityCheckingPrivmsg):
|
||||
keys.insert(0, key)
|
||||
else:
|
||||
channels.append(channel)
|
||||
if not ircutils.isChannel(channel):
|
||||
irc.error('%r is not a valid channel.' % channel)
|
||||
return
|
||||
irc.queueMsg(ircmsgs.joins(channels, keys))
|
||||
for channel in channels:
|
||||
self.joins[channel] = (irc, msg)
|
||||
|
Loading…
Reference in New Issue
Block a user