enable some string BannedApis

This commit is contained in:
goat 2024-07-11 00:20:00 +02:00
parent 577f17eb1b
commit 2cbb8b9e22
9 changed files with 20 additions and 20 deletions

View file

@ -475,7 +475,7 @@ internal unsafe class UiDebug
var name = unitBase->NameString;
if (searching)
{
if (name == null || !name.ToLower().Contains(searchStr.ToLower())) continue;
if (name == null || !name.ToLowerInvariant().Contains(searchStr.ToLowerInvariant())) continue;
}
noResults = false;