Skip to content

Commit

Permalink
Fixed bug with escaped quotes
Browse files Browse the repository at this point in the history
On save, quotes would be escaped, even if not needed. This bug is a relic from older code where this was necessary.
  • Loading branch information
Spacehuhn committed Nov 21, 2019
1 parent c44765d commit 276cefb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion web/index.js
Expand Up @@ -221,7 +221,6 @@ function write(fileName, content) {
stop(fileName);

fileName = fixFileName(fileName);
content = content.replace(/"/g, '\\"');

ws_send("remove \"/temporary_script\"", log_ws);
ws_send("create \"/temporary_script\"", log_ws);
Expand Down

0 comments on commit 276cefb

Please sign in to comment.