mirror of https://github.com/arendst/Tasmota.git
Files starting with underscore in file system are no more hidden
This commit is contained in:
parent
388b3d5f54
commit
5ae88c4f97
|
@ -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…
Reference in New Issue