From 4d9d893868d2d5f9c310fe5abc566c44fd90aa73 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Sun, 1 Jun 2025 22:54:42 -0700 Subject: [PATCH] Changed so that the Top page starts with long fast selected --- meshview/web.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meshview/web.py b/meshview/web.py index e6fcc2a..f0b0fe1 100644 --- a/meshview/web.py +++ b/meshview/web.py @@ -1367,7 +1367,9 @@ async def get_config(request): "MQTT Server": mqtt.get("server", ""), "Topics": json.loads(mqtt.get("topics", "[]")), "Release": SOFTWARE_RELEASE - }) + }, + dumps=lambda obj: json.dumps(obj, indent=2)) + except (json.JSONDecodeError, TypeError): return web.json_response({"error": "Invalid configuration format"}, status=500)