Show hidden directories in browser

This commit is contained in:
jpirnay
2026-03-02 21:53:06 +01:00
parent e96f4d8d15
commit 04c19780eb
5 changed files with 9 additions and 2 deletions
+1 -1
View File
@@ -355,7 +355,7 @@ void CrossPointWebServer::scanFiles(const char* path, const std::function<void(F
auto fileName = String(name);
// Skip hidden items (starting with ".")
bool shouldHide = fileName.startsWith(".");
bool shouldHide = !SETTINGS.showHiddenFiles && fileName.startsWith(".");
// Check against explicitly hidden items list
if (!shouldHide) {