From 5ae88c4f97eda4e46cc974c8bc34519c745cf89a Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Sun, 3 Oct 2021 16:39:43 +0200 Subject: [PATCH] Files starting with underscore in file system are no more hidden --- CHANGELOG.md | 1 + tasmota/xdrv_50_filesystem.ino | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c521dfdc..f8b56d978 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ All notable changes to this project will be documented in this file. ### Changed - Removed command ``EnergyReset`` as it is replaced by new commands +- Files starting with underscore in file system are no more hidden ## [9.5.0.8] 20210927 ### Added diff --git a/tasmota/xdrv_50_filesystem.ino b/tasmota/xdrv_50_filesystem.ino index d42cdda8d..e4b40ce99 100644 --- a/tasmota/xdrv_50_filesystem.ino +++ b/tasmota/xdrv_50_filesystem.ino @@ -259,7 +259,6 @@ uint8_t UfsReject(char *name) { } while (*name=='/') { name++; } - if (*name=='_') { return 1; } if (*name=='.') { return 1; } if (!strncasecmp(name, "SPOTLI~1", REJCMPL)) { return 1; }