From 96b397644266ffd69b1712accb7fc528f3022c72 Mon Sep 17 00:00:00 2001 From: Christoph Stenglein Date: Mon, 30 Sep 2024 15:07:18 +0200 Subject: [PATCH] fix: send installed_app_status correctly for bitcoin only nodes --- app/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index e9bc207..b819368 100644 --- a/app/main.py +++ b/app/main.py @@ -328,7 +328,8 @@ async def warmup_new_connections(): *[ _handle(id, SSE.SYSTEM_INFO, res[0]), _handle(id, SSE.BTC_INFO, res[1]), - _handle(id, SSE.HARDWARE_INFO, res[2]), + _handle(id, SSE.INSTALLED_APP_STATUS, res[2]), + _handle(id, SSE.HARDWARE_INFO, res[3]), ] )