From 4d58129eee9206456cfe1d3379badff4123aa40c Mon Sep 17 00:00:00 2001 From: UpstreamData Date: Mon, 18 Apr 2022 13:12:08 -0600 Subject: [PATCH] fixed a bug with not hiding the light button --- tools/web_testbench/_miners.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/web_testbench/_miners.py b/tools/web_testbench/_miners.py index fca51e26..25d926f1 100644 --- a/tools/web_testbench/_miners.py +++ b/tools/web_testbench/_miners.py @@ -44,7 +44,8 @@ class TestbenchMiner: data = { "IP": str(self.host), "text": str(message).replace("\r", "") + "\n", - "online": self.get_online_time(), + "Light": "hide", + "online": self.get_online_time() } await ConnectionManager().broadcast_json(data)