Commit 8ce1841e authored by justcoding121's avatar justcoding121

#154

parent aa2208c9
......@@ -91,7 +91,7 @@ namespace Titanium.Web.Proxy.Http
var header = headerItem.Value;
if (headerItem.Key != "Proxy-Authorization")
{
requestLines.AppendLine(header.Name + ":" + header.Value);
requestLines.AppendLine(header.Name + ": " + header.Value);
}
}
......@@ -103,7 +103,7 @@ namespace Titanium.Web.Proxy.Http
{
if (headerItem.Key != "Proxy-Authorization")
{
requestLines.AppendLine(header.Name + ":" + header.Value);
requestLines.AppendLine(header.Name + ": " + header.Value);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment