home · contact · privacy
Handle joining "secret" channels.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 2 Sep 2025 10:19:58 +0000 (12:19 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 2 Sep 2025 10:19:58 +0000 (12:19 +0200)
ircplom/msg_parse_expectations.py

index dd75c9c2af04996fff88a3d8011dc07375d9d136..55fb414714b77ec974bfe2e8c7f75bb666ccf00e 100644 (file)
@@ -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'),