logic: Fixed source extensions not converted to lowercase (issue #614)

This commit is contained in:
Eberhard Graether
2018-08-24 16:12:53 +02:00
parent 862f7b99a7
commit bd1e79179b
+1 -2
View File
@@ -55,8 +55,7 @@ std::vector<FileInfo> FileSystem::getFileInfosFromPaths(
std::set<std::wstring> ext;
for (const std::wstring& e : fileExtensions)
{
// ext.insert(utility::toLowerCase(e));
ext.insert(e);
ext.insert(utility::toLowerCase(e));
}
std::set<boost::filesystem::path> symlinkDirs;