diff --git a/OpenSim/Framework/Servers/HttpServer/OSHttpServer/HttpRequest.cs b/OpenSim/Framework/Servers/HttpServer/OSHttpServer/HttpRequest.cs index e648ea49a2..2675130e54 100644 --- a/OpenSim/Framework/Servers/HttpServer/OSHttpServer/HttpRequest.cs +++ b/OpenSim/Framework/Servers/HttpServer/OSHttpServer/HttpRequest.cs @@ -344,7 +344,7 @@ namespace OSHttpServer case "host": try { - m_uri = new Uri(Secure ? "https://" : "http://" + value + m_uriPath); + m_uri = new Uri((Secure ? "https://" : "http://") + value + m_uriPath); m_uriPath = m_uri.AbsolutePath; } catch (UriFormatException err)