diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ec5b8603..a12eb4622 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ All notable changes to this project will be documented in this file. - RTC not detected when lights are present (#16242) - DNS lookup for .local domains (#16273) - Button response delay regression from v12.0.2.4 (#16319) +- Lost module name in GUI regression from v12.0.2.4 - 20220803 (#16324) ### Removed diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 5410b40d8..406eaa828 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -122,5 +122,6 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo - RTC not detected when lights are present [#16242](https://github.com/arendst/Tasmota/issues/16242) - DNS lookup for .local domains [#16273](https://github.com/arendst/Tasmota/issues/16273) - Button response delay regression from v12.0.2.4 [#16319](https://github.com/arendst/Tasmota/issues/16319) +- Lost module name in GUI regression from v12.0.2.4 - 20220803 [#16324](https://github.com/arendst/Tasmota/issues/16324) ### Removed diff --git a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino index 3ebb106c7..f85a1660e 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino @@ -602,7 +602,7 @@ void StartWebserver(int type, IPAddress ipweb) #endif // Not FIRMWARE_MINIMAL if (!Web.initial_config) { - Web.initial_config = !strlen(SettingsText(SET_STASSID1)) || !strlen(SettingsText(SET_STASSID2)); + Web.initial_config = (!strlen(SettingsText(SET_STASSID1)) && !strlen(SettingsText(SET_STASSID2))); if (Web.initial_config) { AddLog(LOG_LEVEL_DEBUG, PSTR(D_LOG_HTTP "Blank Device - Initial Configuration")); } } }