Compare commits

...

2 Commits

Author SHA1 Message Date
Ubit Umarov
a5e5111d4a Merge pull request #46 from holoneon/patch-4
Update BunchOfCaps.cs typo
2026-07-07 18:51:13 +01:00
Fiona Sweet
f561c21369 Update BunchOfCaps.cs typo
Unkown -> Unknown
2026-07-07 08:11:01 -07:00

View File

@@ -2242,7 +2242,7 @@ namespace OpenSim.Region.ClientStack.Linden
foreach (UserData ud in names)
{
// dont tell about unknown users, we can't send them back on Bad either
if (string.IsNullOrEmpty(ud.FirstName) || ud.FirstName.Equals("Unkown"))
if (string.IsNullOrEmpty(ud.FirstName) || ud.FirstName.Equals("Unknown"))
continue;
string fullname = ud.FirstName + " " + ud.LastName;
@@ -2643,4 +2643,4 @@ namespace OpenSim.Region.ClientStack.Linden
}
}
}
}
}