mirror of https://github.com/arendst/Tasmota.git
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:
commit
f3c1da6a55
|
@ -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
|
||||
|
|
|
@ -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; }
|
||||
|
|
Loading…
Reference in New Issue