minor refactor moving scheduler item list loading once

This commit is contained in:
proddy
2024-01-26 23:01:44 +01:00
parent e319f5e270
commit 34cafe0d4d
2 changed files with 32 additions and 20 deletions

View File

@@ -75,7 +75,7 @@ class WebSchedulerService : public StatefulService<WebScheduler> {
HttpEndpoint<WebScheduler> _httpEndpoint;
FSPersistence<WebScheduler> _fsPersistence;
std::list<ScheduleItem> * scheduleItems; // pointer to the list of schedule events
std::list<ScheduleItem> * scheduleItems_; // pointer to the list of schedule events
bool ha_registered_ = false;
};