diff --git a/frontend/JSON.lua b/frontend/JSON.lua index 4be1d95a9..d507d950e 100644 --- a/frontend/JSON.lua +++ b/frontend/JSON.lua @@ -326,6 +326,8 @@ local function grok_string(self, text, start, etc) elseif text:match('^\\t', i) then VALUE = VALUE .. "\t" i = i + 2 + elseif text:match('^\\\\', i) then + i = i + 1 else local hex = text:match('^\\u([0123456789aAbBcCdDeEfF][0123456789aAbBcCdDeEfF][0123456789aAbBcCdDeEfF][0123456789aAbBcCdDeEfF])', i) if hex then