mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-04-12 12:06:29 +00:00
fix(essentials): appends correct delimiter
This commit is contained in:
parent
b2d3faf208
commit
720c8d9ee3
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue