remove another wrong ':'

master
UbitUmarov 2020-04-24 01:07:58 +01:00
parent 76019258e3
commit ba8d188a0d
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ namespace OpenSim.Framework.Servers.HttpServer
response.StatusCode = responsecode; response.StatusCode = responsecode;
if (responsecode == (int)HttpStatusCode.Moved) if (responsecode == (int)HttpStatusCode.Moved)
{ {
response.AddHeader("Location:", (string)responsedata["str_redirect_location"]); response.AddHeader("Location", (string)responsedata["str_redirect_location"]);
response.KeepAlive = false; response.KeepAlive = false;
PollServiceArgs.RequestsHandled++; PollServiceArgs.RequestsHandled++;
response.Send(); response.Send();