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
Patterns with no special glob characters should be treated as having asterisks prepended and appended when testing the condition.
This sounds like a disasterous idea (since it would mean rules with a condition of type == 'm.room.message' would also match events of type org.example.m.room.message). Fortunately it appears to be untrue.
(that said: synapse does implement some magic when the match key is content.body, where it searches for the search term anywhere in the event body, but also only matches complete words)
The text was updated successfully, but these errors were encountered:
https://matrix.org/docs/spec/client_server/r0.6.1#conditions says:
This sounds like a disasterous idea (since it would mean rules with a condition of
type == 'm.room.message'
would also match events of typeorg.example.m.room.message
). Fortunately it appears to be untrue.(that said: synapse does implement some magic when the match key is
content.body
, where it searches for the search term anywhere in the event body, but also only matches complete words)The text was updated successfully, but these errors were encountered: