actually commit the uri fix

master
UbitUmarov 2020-04-15 21:23:13 +01:00
parent 7572a60993
commit e859985cfa
1 changed files with 1 additions and 1 deletions

View File

@ -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)