A fork of https://github.com/crosspoint-reader/crosspoint-reader
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Hide "System Volume Information" folder (#184)

## Summary

* Hide "System Volume Information" folder
* It's a FAT filesystem folder, shouldn't be used

## Additional Context

* Fixes https://github.com/daveallie/crosspoint-reader/issues/177

authored by

Dave Allie and committed by
GitHub
026733a4 57b075ec

+1 -1
+1 -1
src/activities/reader/FileSelectionActivity.cpp
··· 42 42 char name[128]; 43 43 for (auto file = root.openNextFile(); file; file = root.openNextFile()) { 44 44 file.getName(name, sizeof(name)); 45 - if (name[0] == '.') { 45 + if (name[0] == '.' || strcmp(name, "System Volume Information") == 0) { 46 46 file.close(); 47 47 continue; 48 48 }