From d07516b9976ac89a7149d1547550d1c07e1ef2bd Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Tue, 2 Sep 2025 12:19:58 +0200 Subject: [PATCH] Handle joining "secret" channels. --- ircplom/msg_parse_expectations.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ircplom/msg_parse_expectations.py b/ircplom/msg_parse_expectations.py index dd75c9c..55fb414 100644 --- a/ircplom/msg_parse_expectations.py +++ b/ircplom/msg_parse_expectations.py @@ -253,6 +253,12 @@ MSG_EXPECTATIONS += [ # joining/leaving MSG_EXPECTATIONS += [ + _MsgParseExpectation(MsgTok.SERVER, + '353', # RPL_NAMREPLY + ((MsgTok.NICKNAME, 'set_me_attr:nick'), + '@', + (MsgTok.CHANNEL, ':channel'), + (MsgTok.LIST, ':names'))), _MsgParseExpectation(MsgTok.SERVER, '353', # RPL_NAMREPLY ((MsgTok.NICKNAME, 'set_me_attr:nick'), -- 2.30.2