Commit 364c54ff authored by Paul S's avatar Paul S

Add back missing CRLF on upstream proxy auth header.

parent 5cecf4f1
......@@ -113,7 +113,7 @@ namespace Titanium.Web.Proxy.Http
{
headerBuilder.AppendFormat("{0}{1}", HttpHeader.ProxyConnectionKeepAlive, CRLF);
headerBuilder.AppendFormat("{0}{1}",
HttpHeader.GetProxyAuthorizationHeader(upstreamProxy.UserName, upstreamProxy.Password));
HttpHeader.GetProxyAuthorizationHeader(upstreamProxy.UserName, upstreamProxy.Password), CRLF);
}
// write request headers
......
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