From 39b2456ce9048d1d2b8a4f5ac5eb39554085cff5 Mon Sep 17 00:00:00 2001 From: siikamiika Date: Mon, 19 Aug 2019 19:47:45 +0300 Subject: [PATCH] fix off by one error --- ext/fg/js/source.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/fg/js/source.js b/ext/fg/js/source.js index bbf00e30..a360b331 100644 --- a/ext/fg/js/source.js +++ b/ext/fg/js/source.js @@ -180,7 +180,7 @@ class TextSourceRange { let consumed = 0; let stripped = 0; while (state.remainder - consumed > 0) { - const currentChar = node.nodeValue[offset - consumed - stripped]; // negative indices are undefined in JS + const currentChar = node.nodeValue[offset - 1 - consumed - stripped]; // negative indices are undefined in JS if (!currentChar) { break; } else if (currentChar.match(IGNORE_TEXT_PATTERN)) {