From f7be52d075349264c58aee7f36e21e7a54079b14 Mon Sep 17 00:00:00 2001 From: Lukas Bachschwell Date: Sun, 17 Dec 2017 19:02:03 +0100 Subject: [PATCH] made sure filesystem is properly formated --- src/ESPUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ESPUI.cpp b/src/ESPUI.cpp index 221c393..627cad0 100644 --- a/src/ESPUI.cpp +++ b/src/ESPUI.cpp @@ -50,7 +50,7 @@ void ESPUIClass::prepareFileSystem(){ // this function should only be used once Serial.println('About to prepare filesystem...'); -if(!SPIFFS.begin()) { +if(!SPIFFS.begin(true)) { Serial.println("SPIFFS Mount Failed"); return; }