refactor: remove leftover from rebase

This commit is contained in:
Andrew Welker
2023-02-03 13:43:14 -07:00
parent 92c722207d
commit 53d9595cb5

View File

@@ -66,7 +66,7 @@ namespace PepperDash.Core
{ {
// returns false if no client or not connected // returns false if no client or not connected
get { return Client != null && ClientStatus == SocketStatus.SOCKET_STATUS_CONNECTED; } get { return Client != null && ClientStatus == SocketStatus.SOCKET_STATUS_CONNECTED; }
} }
/// <summary> /// <summary>
/// S+ helper for IsConnected /// S+ helper for IsConnected
@@ -331,8 +331,7 @@ namespace PepperDash.Core
KillStream(); KillStream();
if (Client != null) if (Client != null)
{ {
IsConnecting = false;
Client.Disconnect(); Client.Disconnect();
Client = null; Client = null;
ClientStatus = status; ClientStatus = status;