fix estates URI
parent
7ffb0aca44
commit
8eea9531ee
|
@ -192,12 +192,12 @@ namespace OpenSim.Region.CoreModules.World.Estate
|
||||||
{
|
{
|
||||||
string url = "";
|
string url = "";
|
||||||
if(port != 0)
|
if(port != 0)
|
||||||
url = "http://" + region.ExternalHostName + ":" + port;
|
url = "http://" + region.ExternalHostName + ":" + port + "/";
|
||||||
else
|
else
|
||||||
url = region.ServerURI;
|
url = region.ServerURI;
|
||||||
|
|
||||||
string reply = SynchronousRestFormsRequester.MakeRequest("POST",
|
string reply = SynchronousRestFormsRequester.MakeRequest("POST",
|
||||||
url + "/estate",
|
url + "estate",
|
||||||
reqString);
|
reqString);
|
||||||
if (reply != string.Empty)
|
if (reply != string.Empty)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue