Merge pull request #374 from tomaz82/fix_collections

Fix double //
This commit is contained in:
Jools Wills 2018-02-10 11:01:43 +00:00 committed by GitHub
commit 71b64e86ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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))