Revert "Use current TravelingAgent if the login failure reason is "Logins Disabled" to fix NullReferenceException, allowing agent to login to fallback region when logins are disabled by "StartDisabled = true" or when logins are disabled by RegionReady"
This reverts commit 4b9e446c62
.
bulletsim
parent
ac4d080aaf
commit
0a430bbffb
|
@ -197,11 +197,8 @@ namespace OpenSim.Services.HypergridService
|
||||||
agentCircuit.firstname, agentCircuit.lastname, region.ServerURI, reason);
|
agentCircuit.firstname, agentCircuit.lastname, region.ServerURI, reason);
|
||||||
|
|
||||||
// restore the old travel info
|
// restore the old travel info
|
||||||
if(reason != "Logins Disabled")
|
lock (m_TravelingAgents)
|
||||||
{
|
m_TravelingAgents[agentCircuit.SessionID] = old;
|
||||||
lock (m_TravelingAgents)
|
|
||||||
m_TravelingAgents[agentCircuit.SessionID] = old;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue