From 4604114bd42102b5a94aaf2666a8f2cfdedaa4cc Mon Sep 17 00:00:00 2001 From: Benjamin Braatz Date: Sun, 25 May 2025 22:58:36 +0200 Subject: [PATCH] Bugfix: Forgot one _messages. --- controlpi_plugins/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controlpi_plugins/graph.py b/controlpi_plugins/graph.py index 2c43c13..4d7b56c 100644 --- a/controlpi_plugins/graph.py +++ b/controlpi_plugins/graph.py @@ -59,7 +59,7 @@ class Graph(BasePlugin): try: await self.send(messages) except Exception as e: - self._messages.extend(messages) + self.messages.extend(messages) print(f"Graph connection '{self.name}'" f" to {self.conf['url']}:" f" Exception in 'sync()': {e}") -- 2.34.1