Skip to content

Commit

Permalink
Fixed inverse filters
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Apr 25, 2023
1 parent 3c038c6 commit 71c2553
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ object Filters : Registry<Filter<*, *>>() {
val blocks = mutableListOf<FilterBlock<*, *>>()

for (key in config.getKeys(false)) {
val filter = get(key) ?: continue
val filter = get(key) ?: get(key.removePrefix("not_")) ?: continue
blocks += makeBlock(filter, config, context) ?: continue
}

Expand Down

0 comments on commit 71c2553

Please sign in to comment.