From e6df25074bdc6d42d2d0d3a73ebec9ccb548dbff Mon Sep 17 00:00:00 2001 From: Tomas Jakobsson Date: Sat, 10 Feb 2018 11:35:24 +0100 Subject: [PATCH] Fix double // --- 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 62d8d4813..b95357e8b 100644 --- a/es-core/src/utils/FileSystemUtil.cpp +++ b/es-core/src/utils/FileSystemUtil.cpp @@ -62,7 +62,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))