From 104d7c926fe74df939845dfcf6b569d29ae1a21d Mon Sep 17 00:00:00 2001 From: Hans Meine Date: Sun, 8 Dec 2024 11:36:09 +0100 Subject: [PATCH] fix order of %prefix%/%topic%/ in config schema The default MQTT full topic in Tasmota is %prefix%/%topic%/, which is also reflected in src/base.js. In the config.schema.json, however, the order was reversed, presumably by accident, which presents itself as a subtle setup hurdle for new users. --- config.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.schema.json b/config.schema.json index 463890b..976bffd 100644 --- a/config.schema.json +++ b/config.schema.json @@ -125,7 +125,7 @@ "type": "string", "required": true, "description": "Tasmota device full topic, as shown in its MQTT settings", - "default": "%topic%/%prefix%/" + "default": "%prefix%/%topic%/" }, "debug": { "title": "Debug",