Fix parsing bug

This commit is contained in:
Jeremy Ruston
2026-01-22 20:43:54 +00:00
parent adf9853ce4
commit c4d0b61827
+1 -1
View File
@@ -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];