mantis 8171 fix redirection on llHttpRequest

This commit is contained in:
UbitUmarov
2017-05-20 17:56:04 +01:00
parent 9397b358d3
commit 49d42ee08a

View File

@@ -663,12 +663,6 @@ namespace OpenSim.Region.CoreModules.Scripting.HttpRequest
Status = (int)OSHttpStatusCode.ClientErrorJoker;
ResponseBody = e.Message;
}
if (ResponseBody == null)
ResponseBody = String.Empty;
_finished = true;
return;
}
catch (Exception e)
{
@@ -727,13 +721,10 @@ namespace OpenSim.Region.CoreModules.Scripting.HttpRequest
else
{
_finished = true;
if (ResponseBody == null)
ResponseBody = String.Empty;
}
}
if (ResponseBody == null)
ResponseBody = String.Empty;
_finished = true;
}
public void Stop()