From a673122e00c3d80573c461eca8aa245c2a008fdc Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Mon, 18 Aug 2025 13:49:04 -0600 Subject: [PATCH] fix: removes condition that blocked BeginPolling method call if using socket connection method --- .../Monitoring/GenericCommunicationMonitor.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/essentials-framework/Essentials Core/PepperDashEssentialsBase/Monitoring/GenericCommunicationMonitor.cs b/src/essentials-framework/Essentials Core/PepperDashEssentialsBase/Monitoring/GenericCommunicationMonitor.cs index ab3d8b37..535c1377 100644 --- a/src/essentials-framework/Essentials Core/PepperDashEssentialsBase/Monitoring/GenericCommunicationMonitor.cs +++ b/src/essentials-framework/Essentials Core/PepperDashEssentialsBase/Monitoring/GenericCommunicationMonitor.cs @@ -158,10 +158,8 @@ namespace PepperDash.Essentials.Core Client.TextReceived += Client_TextReceived; } - if (!IsSocket) - { - BeginPolling(); - } + BeginPolling(); + } void socket_ConnectionChange(object sender, GenericSocketStatusChageEventArgs e)