Skip to content

Commit

Permalink
Autocomplete: OrdinalIgnoreCase on string comparison (#5894)
Browse files Browse the repository at this point in the history
  • Loading branch information
tesar-tech authored Dec 13, 2024
1 parent 56e93ea commit 5350625
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ where CustomFilter( q, Search )
{
query = from q in query
let text = GetItemText( q )
where text.IndexOf( Search, 0, StringComparison.CurrentCultureIgnoreCase ) >= 0
where text.IndexOf( Search, 0, StringComparison.OrdinalIgnoreCase ) >= 0
select q;
}
else
Expand Down

0 comments on commit 5350625

Please sign in to comment.