Reject invalid join commands outright.

This commit is contained in:
Jeremy Fincher 2004-02-10 00:53:01 +00:00
parent ec8d1bef06
commit 6ebc226e00
1 changed files with 3 additions and 1 deletions

View File

@ -137,6 +137,8 @@ class Admin(privmsgs.CapabilityCheckingPrivmsg):
channel name via a comma. I.e., if you need to join both #a and #b,
and #a requires a key of 'aRocks', then you'd call 'join #a,aRocks #b'
"""
if not args:
raise callbacks.ArgumentError
keys = []
channels = []
for channel in args:
@ -191,7 +193,7 @@ class Admin(privmsgs.CapabilityCheckingPrivmsg):
you give it.
"""
if not args:
args.append(msg.args[0])
args = [msg.args[0]]
for arg in args:
if arg not in irc.state.channels:
irc.error('I\'m not currently in %s' % arg)