Merge pull request #5050 from matrix-org/t3chguy/fix/14774

Fix Query Matcher regression with certain unhomoglyph'd characters
pull/21833/head
Michael Telatynski 2020-07-28 16:13:03 +01:00 committed by GitHub
commit 05332124ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -142,7 +142,8 @@ export default class QueryMatcher<T extends Object> {
private processQuery(query: string): string {
if (this._options.fuzzy !== false) {
return removeHiddenChars(query).toLowerCase();
// lower case both the input and the output for consistency
return removeHiddenChars(query.toLowerCase()).toLowerCase();
}
return query.toLowerCase();
}