aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-01-13 22:21:53 +0000
committerGravatar jesopo2018-01-13 22:21:53 +0000
commit46d8bd879e351787a884ce8b120de93d49a47dd7 (patch)
tree320611a6ee109c1144609cfdd9989f7b08d939d5
parentassert statements are optimised out, these statement were useless. (diff)
signature
Fix crash on PRIVMSG with nothing but whitespace
-rw-r--r--IRCLineHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/IRCLineHandler.py b/IRCLineHandler.py
index ca54d7f5..1b6014d2 100644
--- a/IRCLineHandler.py
+++ b/IRCLineHandler.py
@@ -291,7 +291,7 @@ def handle_PRIVMSG(data):
server = data.server
nickname, username, hostname = Utils.seperate_hostmask(data.prefix)
user = server.get_user(nickname)
- message = data.args[1]
+ message = "" if len(data.args) < 2 else data.args[1]
message_split = message.split(" ")
target = data.args[0]
action = message.startswith("\01ACTION ") and message.endswith("\01")