diff options
-rw-r--r-- | client/lib/filter.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/lib/filter.js b/client/lib/filter.js index db2dd89f..60c2bc84 100644 --- a/client/lib/filter.js +++ b/client/lib/filter.js @@ -172,7 +172,7 @@ class AdvancedFilter { let start = -1; for (let i = 0; i < commands.length; i++) { - if (!commands[i].string && commands[i].cmd) + if (commands[i].cmd) { switch (commands[i].cmd) { |