From c0001b6d1c6870819a2b1d8e25892018f2f3a8ba Mon Sep 17 00:00:00 2001 From: Matt <37119951+750@users.noreply.github.com> Date: Tue, 7 Jan 2025 19:40:48 +0300 Subject: [PATCH] fix https://github.com/richie5um/vscode-statusbar-json-path/issues/30 --- src/jsonPathTo.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/jsonPathTo.ts b/src/jsonPathTo.ts index 663f762..c04d9eb 100644 --- a/src/jsonPathTo.ts +++ b/src/jsonPathTo.ts @@ -125,6 +125,7 @@ function findEndQuote(text: string, i: number) { // Handle backtracking to find if this quote is escaped if (text[i] === "\\") { i += 2; + continue; } if (text[i] === '"') {