3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-24 03:29:28 +01:00

ServiceBot: ignore invalid commands beginning with \x01 (CTCP)

This commit is contained in:
James Lu 2016-06-15 11:26:30 -07:00
parent f555a484f9
commit d362063e8a

View File

@ -212,7 +212,9 @@ class ServiceBot():
cmd = cmd_args[0].lower()
cmd_args = cmd_args[1:]
if cmd not in self.commands:
self.reply(irc, 'Error: Unknown command %r.' % cmd)
if not cmd.startswith('\x01'):
# Ignore invalid command errors from CTCPs.
self.reply(irc, 'Error: Unknown command %r.' % cmd)
log.info('(%s/%s) Received unknown command %r from %s', irc.name, self.name, cmd, irc.getHostmask(source))
return