fix estates URI

0.9.0.1-postfixes
UbitUmarov 2018-01-03 10:21:07 +00:00
parent 7ffb0aca44
commit 8eea9531ee
1 changed files with 2 additions and 2 deletions

View File

@ -192,12 +192,12 @@ namespace OpenSim.Region.CoreModules.World.Estate
{
string url = "";
if(port != 0)
url = "http://" + region.ExternalHostName + ":" + port;
url = "http://" + region.ExternalHostName + ":" + port + "/";
else
url = region.ServerURI;
string reply = SynchronousRestFormsRequester.MakeRequest("POST",
url + "/estate",
url + "estate",
reqString);
if (reply != string.Empty)
{