mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-22 18:26:30 +00:00
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
|
### Changed
|
||||||
- Removed command ``EnergyReset`` as it is replaced by new commands
|
- 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
|
## [9.5.0.8] 20210927
|
||||||
### Added
|
### Added
|
||||||
|
@ -259,7 +259,6 @@ uint8_t UfsReject(char *name) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
while (*name=='/') { name++; }
|
while (*name=='/') { name++; }
|
||||||
if (*name=='_') { return 1; }
|
|
||||||
if (*name=='.') { return 1; }
|
if (*name=='.') { return 1; }
|
||||||
|
|
||||||
if (!strncasecmp(name, "SPOTLI~1", REJCMPL)) { return 1; }
|
if (!strncasecmp(name, "SPOTLI~1", REJCMPL)) { return 1; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user