From 720c8d9ee31aa298868d7103058703000aeeeccb Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 10 Feb 2022 12:20:39 -0700 Subject: [PATCH] fix(essentials): appends correct delimiter --- Pepperdash Core/Pepperdash Core/Comm/CommunicationGather.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pepperdash Core/Pepperdash Core/Comm/CommunicationGather.cs b/Pepperdash Core/Pepperdash Core/Comm/CommunicationGather.cs index 8bd7669..eb49a46 100644 --- a/Pepperdash Core/Pepperdash Core/Comm/CommunicationGather.cs +++ b/Pepperdash Core/Pepperdash Core/Comm/CommunicationGather.cs @@ -153,7 +153,7 @@ namespace PepperDash.Core { string strToSend = null; if (IncludeDelimiter) - strToSend = lines[i] + StringDelimiters; + strToSend = lines[i] + delimiter; else strToSend = lines[i]; handler(this, new GenericCommMethodReceiveTextArgs(strToSend, delimiter));