Do case-insensitive comparisons on region names in LLStandaloneLoginModule
parent
ac7ccdf7d7
commit
ff4b45a1e3
|
@ -286,7 +286,7 @@ namespace OpenSim.Client.Linden
|
||||||
{
|
{
|
||||||
foreach (Scene nextScene in m_scenes)
|
foreach (Scene nextScene in m_scenes)
|
||||||
{
|
{
|
||||||
if (nextScene.RegionInfo.RegionName == regionName)
|
if (nextScene.RegionInfo.RegionName.Equals(regionName, StringComparison.InvariantCultureIgnoreCase))
|
||||||
{
|
{
|
||||||
scene = nextScene;
|
scene = nextScene;
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue