fix http version

This commit is contained in:
UbitUmarov
2020-04-22 00:00:24 +01:00
parent 6b6baa9e51
commit 212c25f906
3 changed files with 3 additions and 5 deletions

View File

@@ -1256,7 +1256,6 @@ namespace OpenSim.Framework.Servers.HttpServer
response.ContentType = "text/plain";
response.StatusCode = 404;
response.StatusDescription = "Not Found";
response.ProtocolVersion = "HTTP/1.0";
responseString = "Not found";
response.KeepAlive = false;
@@ -1431,7 +1430,6 @@ namespace OpenSim.Framework.Servers.HttpServer
response.ContentType = "text/plain";
response.StatusCode = 404;
response.StatusDescription = "Not Found";
response.ProtocolVersion = "HTTP/1.0";
buffer = Encoding.UTF8.GetBytes("Not found");
}
else