mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-20 17:52:35 +00:00
fix PortduinoFS integration for Firmware.
This commit is contained in:
@@ -14,7 +14,7 @@ void listDir(const char * dirname, uint8_t levels)
|
||||
|
||||
File file = root.openNextFile();
|
||||
while(file){
|
||||
if(file.isDirectory()){
|
||||
if(file.isDirectory() && !String(file.name()).endsWith(".")) {
|
||||
if(levels){
|
||||
listDir(file.name(), levels -1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user