Merge pull request #13267 from s-hadinger/unhide_underscore

Files starting with underscore in file system are no more hidden
This commit is contained in:
Theo Arends 2021-10-03 17:27:49 +02:00 committed by GitHub
commit f3c1da6a55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -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

View File

@ -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; }