SimpleKeywordCheck: Case insensitive checks in Unicode. #24
Labels
No labels
Critical Bug
Documentation
Feature
Small bug
tests
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
babka/activitycolander#24
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
SimpleKeywordCheck has two problems:
string.loweronly lower cases ASCII charactes (e.g. Ä is not translated to ä)"%a+"pattern only matches alphanumerics in ASCII and thus cuts of at the first non-ASCII character. (e.g.utils.str_words("bÄnmich")->{ "b", "mich" })assigned to @CSDUMMI
If we ever implement a keyword check via Subscriptions, this issue will have to be readdressed. But as of v0.7.0 the WholeWordCheck has been removed (a.k.a SimpleKeywordCheck).