fix(QOL): reordered mqtt yaml config so names are first.

This commit is contained in:
Rigear
2026-04-17 21:09:23 -07:00
parent 79d40afc71
commit 3f09e910d9

View File

@@ -1095,8 +1095,8 @@ class APIEndpoints:
return self._error(f"Broker at index {i} has invalid port")
new_broker = {
"enabled": b.get("enabled", False),
"name": str(b["name"]).strip(),
"enabled": b.get("enabled", False),
"transport": str(b.get("transport", "websockets")).strip(),
"host": str(b["host"]).strip(),
"port": port,