mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 11:25:39 +08:00
In the AgentCircuitData of HG users, set the last name to include the port
E.g., instead of "first.last @grid.example.com", the name is now "first.last @grid.example.com:8002"
This commit is contained in:
@@ -430,7 +430,7 @@ namespace OpenSim.Services.HypergridService
|
||||
try
|
||||
{
|
||||
Uri uri = new Uri(aCircuit.ServiceURLs["HomeURI"].ToString());
|
||||
aCircuit.lastname = "@" + uri.Host; // + ":" + uri.Port;
|
||||
aCircuit.lastname = "@" + uri.Authority;
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user