Two characters in my last commit somehow ended up incorrect. This commit updates the Regular Expression (and puts the faulty and corrected expressions in comments) so that the filter works correctly for everyone.
Bad Expression
~/.*(?:\[hidden]|\^\^}~~)$/i
Correct Expression
!/.*(?:\[hidden]|\^\^|~~)$/i
Note the ! point instead of the ~ in the first position, negating the comparison. Also, note the } that should be a | toward the end of the expression that should allow the expression to match [hidden], ^^, or ~~, but instead would have matched [hidden] or ^^}~~ incorrectly.
Correct the Scene Filter for All Users
Two characters in my last commit somehow ended up incorrect. This commit updates the Regular Expression (and puts the faulty and corrected expressions in comments) so that the filter works correctly for everyone.
Bad Expression
~/.*(?:\[hidden]|\^\^}~~)$/i
Correct Expression
!/.*(?:\[hidden]|\^\^|~~)$/i
Note the!
point instead of the~
in the first position, negating the comparison. Also, note the}
that should be a|
toward the end of the expression that should allow the expression to match[hidden]
,^^
, or~~
, but instead would have matched[hidden]
or^^}~~
incorrectly.