mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-11 09:00:08 -04:00
Merge branch 'develop' into travis/login-terms
This commit is contained in:
commit
54def42c19
90 changed files with 2309 additions and 968 deletions
|
@ -172,7 +172,10 @@ USER_FILTER_SCHEMA = {
|
|||
# events a lot easier as we can then use a negative lookbehind
|
||||
# assertion to split '\.' If we allowed \\ then it would
|
||||
# incorrectly split '\\.' See synapse.events.utils.serialize_event
|
||||
"pattern": "^((?!\\\).)*$"
|
||||
#
|
||||
# Note that because this is a regular expression, we have to escape
|
||||
# each backslash in the pattern.
|
||||
"pattern": r"^((?!\\\\).)*$"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue