aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-04 07:35:26 +0100
committerGravatar jesopo2018-09-04 07:35:26 +0100
commit1c3c56e7f4e4fe969508f17b22029f3c8b87dadb (patch)
tree3081407e8c6f6672e7bf600694782ebe9d9fe816
parentidle-notify un-away messages don't have *any* args - this caused BitBot to crash (diff)
signature
Use "draft/message-tags-0.2" IRCv3 capability to actually be able to receive
TAGMSG
-rw-r--r--IRCLineHandler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/IRCLineHandler.py b/IRCLineHandler.py
index c6d24649..ce753a78 100644
--- a/IRCLineHandler.py
+++ b/IRCLineHandler.py
@@ -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):