Skip to content

Commit ac6c789

Browse files
authored
Merge branch 'mega' into feature/2025_april_RC1
2 parents 73437ed + 4e000f7 commit ac6c789

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/src/Commands/UDP.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ const __FlashStringHelper* Command_UPD_SendTo(struct EventStruct *event, const c
4141
if ((destUnit > 0) && (destUnit < 255))
4242
{
4343
String eventName = tolerantParseStringKeepCase(Line, 3);
44+
stripEscapeCharacters(eventName);
4445
SendUDPCommand(destUnit, eventName.c_str(), eventName.length());
4546
}
4647
return return_command_success_flashstr();

src/src/Helpers/StringConverter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1571,7 +1571,7 @@ bool GetArgvBeginEnd(const char *string, const unsigned int argc, int& pos_begin
15711571

15721572
if (!parenthesis && (((c == ' ') && (d == ' ')) ||
15731573
((c == separator) && (d == ' ')))) {
1574-
// Consider multiple consequitive spaces as one.
1574+
// Consider multiple consecutive spaces as one.
15751575
}
15761576
else if (!parenthesis && ((d == ' ') && (e == separator))) {
15771577
// Skip the space.

0 commit comments

Comments
 (0)