Commit 2f96a6a4 authored by justcoding121's avatar justcoding121

Fix bug in chk for connected

parent 862b1d92
......@@ -334,7 +334,7 @@ namespace Titanium.Web.Proxy.Network.Tcp
{
var socket = client.Client;
if (!client.Connected || socket.Connected)
if (!client.Connected || !socket.Connected)
{
return false;
}
......
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