You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
Specifically, if you specify a display name of [benpa] then that will cause the contains_display_name to match against the regex (^|\W)[benpa](\W|$), which matches any event with the word "a" in it.
This is because we pass the display name straight into _glob_matches and the glob to regex conversion doesn't escape regex characters in the glob. (We also probably don't want to be using display name as a glob)
The text was updated successfully, but these errors were encountered:
Specifically, if you specify a display name of
[benpa]
then that will cause thecontains_display_name
to match against the regex(^|\W)[benpa](\W|$)
, which matches any event with the word "a" in it.This is because we pass the display name straight into
_glob_matches
and the glob to regex conversion doesn't escape regex characters in the glob. (We also probably don't want to be using display name as a glob)The text was updated successfully, but these errors were encountered: