mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Normalizing comparison to lower case, just in case ppl set their config vars inconsistently. (maybe related to mantis #5386)
This commit is contained in:
@@ -253,7 +253,7 @@ namespace OpenSim.Services.HypergridService
|
||||
|
||||
TravelingAgentInfo travel = m_TravelingAgents[sessionID];
|
||||
|
||||
return travel.GridExternalName == thisGridExternalName;
|
||||
return travel.GridExternalName.ToLower() == thisGridExternalName.ToLower();
|
||||
}
|
||||
|
||||
public bool VerifyClient(UUID sessionID, string reportedIP)
|
||||
|
||||
Reference in New Issue
Block a user