Skip to content

Commit f00ab8c

Browse files
committed
Release 2.5.3
Fix bug when using character "<" Replace instances of "<" with "&lt;" when scripting a payload Software converts "&lt;" back to "<" on deployment
1 parent 3655c99 commit f00ab8c

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

source/ESP_Code/ESP_Code.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -880,6 +880,7 @@ void setup(void)
880880
while(splitlines != NULL)
881881
{
882882
String liveline=splitlines;
883+
liveline.replace("&lt;", "<");
883884
char *i;
884885
String cmd;
885886
String cmdinput;
32 Bytes
Binary file not shown.

source/ESP_Code/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
String version = "2.5.2";
1+
String version = "2.5.3";
22
String latestardversion = "2.2";

0 commit comments

Comments
 (0)