Fix bug in IRC with zero length messages

master
Mark Veidemanis 3 years ago
parent bac6f26311
commit 50a00a7798
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -160,8 +160,10 @@ class IRCBot(irc.IRCClient):
self.parse(user, host, channel, msg[1:]) self.parse(user, host, channel, msg[1:])
elif host in self.admins and channel == nick: elif host in self.admins and channel == nick:
if len(msg) > 0: if len(msg) > 0:
if msg.split()[0] != "!": spl = msg.split()
self.parse(user, host, channel, msg) if len(spl) > 0:
if spl[0] != "!":
self.parse(user, host, channel, msg)
def noticed(self, user, channel, msg): def noticed(self, user, channel, msg):
""" """

Loading…
Cancel
Save