diff options
| author | 2018-09-03 20:04:58 +0100 | |
|---|---|---|
| committer | 2018-09-03 20:04:58 +0100 | |
| commit | c0130a34eb50a693148fcf502c1933c1f415b0ac (patch) | |
| tree | 9c6ae97d2fb02bd085506f93ce43bfd3b452e5fd | |
| parent | Add !reconnect in admin.py (diff) | |
| signature | ||
IRCv3 message tag value should not be an array
| -rw-r--r-- | IRCLineHandler.py | 2 |
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) |
