revert commit #9c992d8

This commit is contained in:
MichaelDvP
2026-08-12 08:54:05 +02:00
parent 982b0f304e
commit 95a8b78d1d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -21,7 +21,6 @@ This release is based on the latest Espressif/Arduino core version 3. It brings
- Ethernet MAC address changed with the new SDK, breaking DHCP reservations (currently disabled) - Ethernet MAC address changed with the new SDK, breaking DHCP reservations (currently disabled)
- "IPv4 nameserver" showed an IPv6 address when IPv6 was in use - "IPv4 nameserver" showed an IPv6 address when IPv6 was in use
- HA Discovery warning on Uptime after EMS-ESP boot due to NTP not ready - HA Discovery warning on Uptime after EMS-ESP boot due to NTP not ready
- show MQTT connection error only once on the first connect failure
## Changed ## Changed
@@ -33,4 +32,5 @@ This release is based on the latest Espressif/Arduino core version 3. It brings
- show control setting only for master thermostats (0x10) [#3173](https://github.com/emsesp/EMS-ESP32/issues/3173) - show control setting only for master thermostats (0x10) [#3173](https://github.com/emsesp/EMS-ESP32/issues/3173)
- remove devices without entities not listed in 0x07 telegram - remove devices without entities not listed in 0x07 telegram
- changes to the Dialogs in Dashboard page, removed the run icon in the Commands page. Renamed Execute to Run. - changes to the Dialogs in Dashboard page, removed the run icon in the Commands page. Renamed Execute to Run.
- set `None` for undefined values in HA `val_tpl`
+1 -1
View File
@@ -473,7 +473,7 @@ bool Mqtt::get_publish_onchange(uint8_t device_type) {
} }
void Mqtt::on_disconnect(espMqttClientTypes::DisconnectReason reason) { void Mqtt::on_disconnect(espMqttClientTypes::DisconnectReason reason) {
// only show the error once on the first connect failure // only show the error once on the first connect failure
if (connectcount_) { if (!connecting_) {
return; return;
} }
connecting_ = false; connecting_ = false;
+1 -1
View File
@@ -1 +1 @@
#define EMSESP_APP_VERSION "3.9.0-dev.4" #define EMSESP_APP_VERSION "3.9.0-dev.5"