From 2f664b93e0b35b705b4c4d1bd6c90fdd4509398a Mon Sep 17 00:00:00 2001 From: willem Date: Mon, 29 Nov 2021 16:52:07 +0100 Subject: [PATCH] v2 compatibillity --- src/LITTLEFS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LITTLEFS.cpp b/src/LITTLEFS.cpp index a0a6e1e..d14f1ee 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", false); + File f = open(path, "r"); return (f == true); }