Use "draft/message-tags-0.2" IRCv3 capability to actually be able to receive
TAGMSG
This commit is contained in:
parent
e5e9a6fc65
commit
1c3c56e7f4
1 changed files with 3 additions and 3 deletions
|
@ -7,9 +7,9 @@ RE_CHANMODES = re.compile(
|
|||
RE_CHANTYPES = re.compile(r"\bCHANTYPES=(\W+)(?:\b|$)")
|
||||
RE_MODES = re.compile(r"[-+]\w+")
|
||||
|
||||
CAPABILITIES = {"message-tags", "multi-prefix", "chghost", "invite-notify",
|
||||
"account-tag", "account-notify", "extended-join", "away-notify",
|
||||
"userhost-in-names"}
|
||||
CAPABILITIES = {"multi-prefix", "chghost", "invite-notify", "account-tag",
|
||||
"account-notify", "extended-join", "away-notify", "userhost-in-names",
|
||||
"draft/message-tags-0.2"}
|
||||
|
||||
class LineHandler(object):
|
||||
def __init__(self, bot, events):
|
||||
|
|
Loading…
Reference in a new issue