Fix ESP32 example

This commit is contained in:
Sergey Lyubka 2022-02-08 13:43:34 +00:00
parent 8cd4699dbc
commit 40d4c7e410

View File

@ -12,7 +12,7 @@
// SPIFFS is flat, so tell Mongoose that the FS root is a directory
// This cludge is not required for filesystems with directory support
static int my_stat(const char *path, size_t *size, time_t *mtime) {
int flags = mg_fs_posix.stat(path, size, mtime);
int flags = mg_fs_posix.st(path, size, mtime);
if (strcmp(path, FS_ROOT) == 0) flags |= MG_FS_DIR;
return flags;
}