Fixed response system support for escaped quotes causing backslashes to stop working

This commit is contained in:
Blixibon 2022-07-17 20:17:48 -05:00
parent a9bd90f681
commit 197a9be59c

View File

@ -188,6 +188,12 @@ skipwhite:
token[len] = 0;
return data;
}
else if (c != '\"' && escaped)
{
// Not an escape character, just a back slash
token[len] = '\\';
len++;
}
escaped = (c == '\\');
if (!escaped)