* fix ESP8266 save settings issue #1166
This commit is contained in:
lumapu 2023-09-19 21:35:17 +02:00
parent ff63f5236d
commit d0c834f17a
3 changed files with 4 additions and 3 deletions

View file

@ -1,5 +1,8 @@
# Development Changes
## 0.5.58
* fix ESP8266 save settings issue #1166
## 0.7.57 - 2023-09-18
* fix Alarms are always in queue (since 0.7.56)
* fix display active power control to long for small devices #1165

View file

@ -102,7 +102,6 @@ class app : public IApp, public ah::Scheduler {
mSavePending = true;
mSaveReboot = reboot;
if(reboot) {
onNetwork(false);
ah::Scheduler::resetTicker();
}
once(std::bind(&app::tickSave, this), 3, "save");
@ -285,7 +284,6 @@ class app : public IApp, public ah::Scheduler {
void tickReboot(void) {
DPRINTLN(DBG_INFO, F("Rebooting..."));
onNetwork(false);
ah::Scheduler::resetTicker();
WiFi.disconnect();
delay(200);

View file

@ -13,7 +13,7 @@
//-------------------------------------
#define VERSION_MAJOR 0
#define VERSION_MINOR 7
#define VERSION_PATCH 57
#define VERSION_PATCH 58
//-------------------------------------
typedef struct {