Revert "Treat both a and a= as having a value of None in message-tags (utils.irc)"

This reverts commit e7ec4b5716.
This commit is contained in:
jesopo 2019-02-21 07:29:19 +00:00
parent e7ec4b5716
commit 62eab40968

View file

@ -119,7 +119,7 @@ def parse_line(line: str) -> IRCParsedLine:
for tag in filter(None, tags_prefix.split(";")):
tag, sep, value = tag.partition("=")
if value:
if sep:
tags[tag] = message_tag_unescape(value)
else:
tags[tag] = None