diff --git a/content/commands.js b/content/commands.js index f49c0b07..b0de29d3 100644 --- a/content/commands.js +++ b/content/commands.js @@ -707,7 +707,7 @@ liberator.Commands = function () //{{{ let res = tokens[token]; if (res == undefined) // Ignore anything undefined res = "<" + token + ">"; - if (quote) + if (quote && typeof res != "number") return '"' + String.replace(res, '"', '\\"', "g") + '"'; return res; });