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));