fix lowercase search
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user