Commit 09bcfe29 authored by Honfika's avatar Honfika

Proxy authentication should be checked for excluded sites, too

parent 21e820ac
...@@ -96,7 +96,7 @@ namespace Titanium.Web.Proxy ...@@ -96,7 +96,7 @@ namespace Titanium.Web.Proxy
await TunnelConnectRequest.InvokeParallelAsync(this, connectArgs, ExceptionFunc); await TunnelConnectRequest.InvokeParallelAsync(this, connectArgs, ExceptionFunc);
} }
if (!excluded && await CheckAuthorization(clientStreamWriter, connectArgs) == false) if (await CheckAuthorization(clientStreamWriter, connectArgs) == false)
{ {
if (TunnelConnectResponse != null) if (TunnelConnectResponse != null)
{ {
......
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