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:
parent
e7ec4b5716
commit
62eab40968
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue