Fix user form

* fix issue with checkbox on user form
* use consistent style for const char pointers
* use unique hostname by default
This commit is contained in:
rjwats
2020-11-21 23:40:31 +00:00
committed by GitHub
parent 7aed5c0eb2
commit 6e22893051
5 changed files with 15 additions and 18 deletions

View File

@@ -11,7 +11,7 @@ class FSPersistence {
JsonStateUpdater<T> stateUpdater,
StatefulService<T>* statefulService,
FS* fs,
char const* filePath,
const char* filePath,
size_t bufferSize = DEFAULT_BUFFER_SIZE) :
_stateReader(stateReader),
_stateUpdater(stateUpdater),
@@ -81,7 +81,7 @@ class FSPersistence {
JsonStateUpdater<T> _stateUpdater;
StatefulService<T>* _statefulService;
FS* _fs;
char const* _filePath;
const char* _filePath;
size_t _bufferSize;
update_handler_id_t _updateHandlerId;