fix lowercase search

This commit is contained in:
John
2022-01-30 17:36:41 +01:00
parent 3728cc9202
commit 172223578d
+1 -1
View File
@@ -129,7 +129,7 @@ bool FileReader::matches(const string& input, const string& search, bool ignoreC
return matches(inputSub, search, false, true); return matches(inputSub, search, false, true);
} }
string searchSub = search; string searchSub = search;
tolower(&inputSub); tolower(&searchSub);
return matches(inputSub, searchSub, false, true); return matches(inputSub, searchSub, false, true);
} }
// walk through alternatives // walk through alternatives