From e859985cfabb22140c19fb0b90209f83b042a3f9 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Wed, 15 Apr 2020 21:23:13 +0100 Subject: [PATCH] actually commit the uri fix --- .../Framework/Servers/HttpServer/OSHttpServer/HttpRequest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)