mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-05 14:34:56 -04:00
Allow = in mxids and groupids
... because the spec says we should.
This commit is contained in:
parent
58fbbe0f1d
commit
29812c628b
3 changed files with 4 additions and 5 deletions
|
@ -49,7 +49,7 @@ class RegistrationHandler(BaseHandler):
|
|||
if types.contains_invalid_mxid_characters(localpart):
|
||||
raise SynapseError(
|
||||
400,
|
||||
"User ID can only contain characters a-z, 0-9, or '_-./'",
|
||||
"User ID can only contain characters a-z, 0-9, or '=_-./'",
|
||||
Codes.INVALID_USERNAME
|
||||
)
|
||||
|
||||
|
@ -255,8 +255,7 @@ class RegistrationHandler(BaseHandler):
|
|||
if types.contains_invalid_mxid_characters(localpart):
|
||||
raise SynapseError(
|
||||
400,
|
||||
"User ID must only contain characters which do not"
|
||||
" require URL encoding."
|
||||
"User ID can only contain characters a-z, 0-9, or '=_-./'",
|
||||
)
|
||||
user = UserID(localpart, self.hs.hostname)
|
||||
user_id = user.to_string()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue