From f30883e7e80f642262d092d2a638d758b96c876b Mon Sep 17 00:00:00 2001 From: luk3yx Date: Sun, 24 Apr 2022 15:15:47 +1200 Subject: Set self.active_caps correctly --- miniirc_idc.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/miniirc_idc.py b/miniirc_idc.py index 273dc62..3a7303f 100644 --- a/miniirc_idc.py +++ b/miniirc_idc.py @@ -135,6 +135,9 @@ class IDC(miniirc.IRC): elif cmd == 'USER': user, password = self._get_idc_account() self.idc_send('USER', user=user, password=password, id=label) + self.active_caps = self.ircv3_caps & { + 'account-tag', 'labeled-response', # 'message-tags', + } # Override the message parser to change the default parser. def change_parser(self, parser=None): -- cgit v1.2.3