mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 15:44:50 -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
|
@ -162,7 +162,7 @@ class GroupID(DomainSpecificString):
|
|||
SIGIL = "+"
|
||||
|
||||
|
||||
mxid_localpart_allowed_characters = set("_-./" + string.ascii_lowercase + string.digits)
|
||||
mxid_localpart_allowed_characters = set("_-./=" + string.ascii_lowercase + string.digits)
|
||||
|
||||
|
||||
def contains_invalid_mxid_characters(localpart):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue