From c28cf47f613fc500d142da50e3c0966d9be9bcd8 Mon Sep 17 00:00:00 2001 From: Willem Oldemans Date: Wed, 4 Jan 2023 20:22:37 +0100 Subject: [PATCH] revert fix --- src/LITTLEFS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LITTLEFS.cpp b/src/LITTLEFS.cpp index d14f1ee..a0a6e1e 100644 --- a/src/LITTLEFS.cpp +++ b/src/LITTLEFS.cpp @@ -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); }