From 77da28daef74ef535b502106c6b6a1f86d6f9b70 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 7 Aug 2025 15:57:10 +0200 Subject: [PATCH] Fix Client.send log.alerting into STREAM_SERVER instead of param'd stream. --- ircplom/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ircplom/client.py b/ircplom/client.py index fefd772..1c23695 100644 --- a/ircplom/client.py +++ b/ircplom/client.py @@ -229,7 +229,8 @@ class Client(ABC, ClientQueueMixin): ) -> None: 'Send line-separator-delimited message over socket.' if not self.conn: - self._log.alert('cannot send, connection seems closed') + self._log.alert('cannot send, connection seems closed', + stream=stream) return self.conn.send(msg) if to_log: -- 2.30.2