This commit is contained in:
Cinder Roxley
2024-06-30 18:03:58 -05:00
parent 5172c66b6e
commit 17a38b5072
3 changed files with 9 additions and 20 deletions

View File

@@ -111,7 +111,7 @@ namespace OpenMetaverse.TestClient
Console.WriteLine(groupRetrieved.GroupName + "\t\t\t(" +
Name + " UUID " + groupRetrieved.GroupID + ")");
if (groupRetrieved.GroupName.ToLower() == groupName.ToLower())
if (string.Equals(groupRetrieved.GroupName, groupName, StringComparison.CurrentCultureIgnoreCase))
{
resolvedGroupID = groupRetrieved.GroupID;
resolvedGroupName = groupRetrieved.GroupName;