Suppress misleading message when logging in locally
The gatekeeper and travel info address will not actually be set there, stop OpenSim from showing a blank address. It's confusing.melanie
parent
504a69906b
commit
995242b351
|
@ -301,8 +301,12 @@ namespace OpenSim.Services.HypergridService
|
|||
|
||||
// Everything is ok
|
||||
|
||||
// Update the perceived IP Address of our grid
|
||||
m_log.DebugFormat("[USER AGENT SERVICE]: Gatekeeper sees me as {0}", myExternalIP);
|
||||
if (!fromLogin)
|
||||
{
|
||||
// Update the perceived IP Address of our grid
|
||||
m_log.DebugFormat("[USER AGENT SERVICE]: Gatekeeper sees me as {0}", myExternalIP);
|
||||
}
|
||||
|
||||
travel.MyIpAddress = myExternalIP;
|
||||
|
||||
StoreTravelInfo(travel);
|
||||
|
|
Loading…
Reference in New Issue