mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
Do case-insensitive comparisons on region names in LLStandaloneLoginModule
This commit is contained in:
@@ -286,7 +286,7 @@ namespace OpenSim.Client.Linden
|
||||
{
|
||||
foreach (Scene nextScene in m_scenes)
|
||||
{
|
||||
if (nextScene.RegionInfo.RegionName == regionName)
|
||||
if (nextScene.RegionInfo.RegionName.Equals(regionName, StringComparison.InvariantCultureIgnoreCase))
|
||||
{
|
||||
scene = nextScene;
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user