Avoid splitting PRIVMSG payload on :

This commit is contained in:
moneromooo 2015-01-03 18:33:50 +00:00
parent e1cd8042c1
commit d7f3ee7f3f
1 changed files with 2 additions and 0 deletions

View File

@ -388,6 +388,8 @@ def IRCLoop(on_idle,on_identified,on_command):
elif action == 'PRIVMSG':
UpdateLastActiveTime(chan,GetNick(who))
# resplit to avoid splitting text that contains ':'
text = data.split(':',2)[2]
exidx = text.find('!')
if exidx != -1 and len(text)>exidx+1 and text[exidx+1] in string.ascii_letters:
cmd = text.split('!')[1]