Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit 5c7f112

Browse files
authored
Merge pull request #341 from justcoding121/develop
Proxy authentication should be checked for excluded sites, too
2 parents 95a8877 + 09bcfe2 commit 5c7f112

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Titanium.Web.Proxy/RequestHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private async Task HandleClient(ExplicitProxyEndPoint endPoint, TcpClient tcpCli
9696
await TunnelConnectRequest.InvokeParallelAsync(this, connectArgs, ExceptionFunc);
9797
}
9898

99-
if (!excluded && await CheckAuthorization(clientStreamWriter, connectArgs) == false)
99+
if (await CheckAuthorization(clientStreamWriter, connectArgs) == false)
100100
{
101101
if (TunnelConnectResponse != null)
102102
{

0 commit comments

Comments
 (0)