aboutsummaryrefslogtreecommitdiff
path: root/IRCLineHandler.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-03 20:04:58 +0100
committerGravatar jesopo2018-09-03 20:04:58 +0100
commitc0130a34eb50a693148fcf502c1933c1f415b0ac (patch)
tree9c6ae97d2fb02bd085506f93ce43bfd3b452e5fd /IRCLineHandler.py
parentAdd !reconnect in admin.py (diff)
signature
IRCv3 message tag value should not be an array
Diffstat (limited to 'IRCLineHandler.py')
-rw-r--r--IRCLineHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/IRCLineHandler.py b/IRCLineHandler.py
index 8bf6db64..5c4e06a0 100644
--- a/IRCLineHandler.py
+++ b/IRCLineHandler.py
@@ -57,7 +57,7 @@ class LineHandler(object):
for tag in tags_prefix.split(";"):
if tag:
tag_split = tag.split("=", 1)
- tags[tag_split[0]] = tag_split[1:]
+ tags[tag_split[0]] = "".join(tag_split[1:])
if line[0] == ":":
prefix, command, line = line[1:].split(" ", 2)