From f8233f3cfb60c25aa61678dfd94d2211106e46f7 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Tue, 19 Aug 2025 01:13:36 +0200 Subject: [PATCH] Tighten 353 handling. --- ircplom/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircplom/client.py b/ircplom/client.py index e648ea6..5d9ea89 100644 --- a/ircplom/client.py +++ b/ircplom/client.py @@ -531,7 +531,7 @@ class Client(ABC, ClientQueueMixin): return if msg.match('005', 2, True): # RPL_ISUPPORT self._db.process_isupport(msg.params[1:-1]) - elif msg.match('353', 4): # RPL_NAMREPLY + elif msg.match('353', 4) and msg.params[1] == '=': # RPL_NAMREPLY for user in msg.params[3].split(): self._db.chan(msg.params[2]).append_completable('users', user) elif msg.match('366', 3): # RPL_ENDOFNAMES -- 2.30.2