diff --git a/src/core/system.cpp b/src/core/system.cpp index 4af5a03f9..3190fc77e 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -838,8 +838,8 @@ void System::send_info_mqtt() { _connection = connection; JsonDocument doc; - doc["version"] = EMSESP_APP_VERSION; - doc["system_name"] = system_name_.isEmpty() ? "EMS-ESP" : system_name_; + doc["version"] = EMSESP_APP_VERSION; + doc["systemName"] = system_name_.isEmpty() ? "EMS-ESP" : system_name_; // if NTP is enabled send the boot_time in local time in ISO 8601 format (eg: 2022-11-15 20:46:38) // https://github.com/emsesp/EMS-ESP32/issues/751