1
0
mirror of https://github.com/s00500/ESPUI.git synced 2024-09-18 21:11:51 +00:00

Merge branch 's00500:master' into master

This commit is contained in:
Martin Mueller 2024-04-06 10:35:52 -04:00 committed by GitHub
commit 164be971e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -266,7 +266,7 @@ void ESPUIClass::writeFile(const char* path, const char* data)
}
#endif
File file = EspuiLittleFS.open(path, FILE_WRITE);
File file = EspuiLittleFS.open(path, FILE_WRITING);
if (!file)
{
#if defined(DEBUG_ESPUI)

View File

@ -47,7 +47,7 @@
#include <ESPAsyncTCP.h>
#include <Hash.h>
#define FILE_WRITE "w"
#define FILE_WRITING "w"
#endif