Commit 9fd134c7 authored by nanahira's avatar nanahira

fix bad desc filter

parent a1321313
......@@ -34,7 +34,7 @@ export class OrderPickerConfig {
}
isBad(text: string) {
return !this.blacklistMatchers.some((matcher) => text.match(matcher));
return this.blacklistMatchers.some((matcher) => text.match(matcher));
}
acceptMessage(session: Session) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment