rev2 #4

Merged
tobimai merged 2 commits from rev2 into main 2025-11-05 20:33:26 +01:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit c432f47dff - Show all commits

View File

@@ -71,6 +71,6 @@ void setup_api_endpoints(){
};
xTaskCreate(run_ota_update_task, "RunOTAUpdate", 1024 * 8, (void *)&args, 1, NULL);
request->send(SPIFFS, "/update_progress.html", "text/html", false, processor);
request->send(LittleFS, "/update_progress.html", "text/html", false, processor);
});
}

View File

@@ -1,3 +1,4 @@
#include <ESPAsyncWebServer.h>
#include <LittleFS.h>
void setup_api_endpoints();