revert fix

This commit is contained in:
2023-01-04 20:22:37 +01:00
parent a933998cdd
commit c28cf47f61

View File

@@ -41,7 +41,7 @@ LITTLEFSImpl::LITTLEFSImpl()
bool LITTLEFSImpl::exists(const char* path)
{
File f = open(path, "r");
File f = open(path, "r", false);
return (f == true);
}