From f6649ec0704cddb3e0480ac2c5fd292dec987f67 Mon Sep 17 00:00:00 2001 From: pjft Date: Fri, 9 Mar 2018 17:06:39 +0000 Subject: [PATCH] Fixing path generation on the Pi for getDirContents --- es-core/src/utils/FileSystemUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/utils/FileSystemUtil.cpp b/es-core/src/utils/FileSystemUtil.cpp index 3cbb20a1f..0cf054314 100644 --- a/es-core/src/utils/FileSystemUtil.cpp +++ b/es-core/src/utils/FileSystemUtil.cpp @@ -88,7 +88,7 @@ namespace Utils // ignore "." and ".." if((name != ".") && (name != "..")) { - std::string fullName(path + "/" + name); + std::string fullName(getGenericPath(path + "/" + name)); contentList.push_back(fullName); if(_recursive && isDirectory(fullName))