From ff59b554274092620c344fe023eeb1f041b7310b Mon Sep 17 00:00:00 2001 From: fvanroie <15969459+fvanroie@users.noreply.github.com> Date: Mon, 10 May 2021 06:36:35 +0200 Subject: [PATCH] Use default settings if filesystem is unavailable --- src/hasp_config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hasp_config.cpp b/src/hasp_config.cpp index 3b315507..3f0afa47 100644 --- a/src/hasp_config.cpp +++ b/src/hasp_config.cpp @@ -403,7 +403,7 @@ void configSetup() #if HASP_USE_SPIFFS > 0 || HASP_USE_LITTLEFS > 0 if(!filesystemSetup()) { LOG_ERROR(TAG_CONF, F("FILE: SPI flash init failed. Unable to mount FS: Using default settings...")); - return; + // return; // Keep going and initialize the console with default settings } #endif configRead(settings, true);