Fix parsing bug

This commit is contained in:
Jeremy Ruston 2026-01-21 21:45:45 +00:00
parent adf9853ce4
commit c4d0b61827

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];