From 0b91b2d51671a22e577c00d75c0271f931e53e4e Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Tue, 13 Oct 2020 01:18:25 +0000 Subject: [PATCH] Add multi-prefix capability --- irclog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irclog.py b/irclog.py index 689c78d..269db0a 100644 --- a/irclog.py +++ b/irclog.py @@ -321,7 +321,7 @@ class IRCClientProtocol(asyncio.Protocol): self.logger.info('IRC connected') self.transport = transport self.connected = True - caps = [b'userhost-in-names', b'away-notify', b'account-notify', b'extended-join'] + caps = [b'multi-prefix', b'userhost-in-names', b'away-notify', b'account-notify', b'extended-join'] if self.sasl: caps.append(b'sasl') for cap in caps: