Skip to content

Commit

Permalink
fix flowgrammers-org#129: Double quotes now work perfectly fine with …
Browse files Browse the repository at this point in the history
…strcat
  • Loading branch information
Mystic-Slice committed Oct 7, 2021
1 parent 98e5b3a commit 509e0ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ function handleArrays(
}
}
} else {
if (stringManipulationRegex.test(userInput)) {
if (stringManipulationRegex.test(userInput.replaceAll('"', "'"))) {
val = stringManipulations(variableName, userInput)
return val
}
Expand Down

0 comments on commit 509e0ab

Please sign in to comment.