mantis 8715: fix peer http port. thanks GuduleLapointe

master
UbitUmarov 2020-06-13 23:59:55 +01:00
parent efb2b67456
commit d7089bcff2
1 changed files with 2 additions and 2 deletions

View File

@ -191,8 +191,8 @@ namespace OpenSim.Region.CoreModules.World.Estate
try
{
string url = "";
if(port != 0)
url = "http://" + region.ExternalHostName + ":" + port + "/";
if(region.HttpPort != 0)
url = "http://" + region.ExternalHostName + ":" + region.HttpPort + "/";
else
url = region.ServerURI;