From c4d0b618279c8d02f5b939e6f4bd7bdacdd34773 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Wed, 21 Jan 2026 21:45:45 +0000 Subject: [PATCH] Fix parsing bug --- core/modules/filters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/filters.js b/core/modules/filters.js index 0a2e808a3..43770768b 100644 --- a/core/modules/filters.js +++ b/core/modules/filters.js @@ -176,7 +176,7 @@ exports.parseFilter = function(filterString) { // If there is a filter pragma operation.pragma = match[1]; operation.suffix = match[2]; - p = p + operation.pragma.length; + p = match.index + match[0].length; } else if(match[3]) { // If there is a filter run prefix operation.prefix = match[3];