diff options
author | Richard van der Hoff <richard@matrix.org> | 2017-10-20 23:42:53 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2017-10-20 23:42:53 +0100 |
commit | 29812c628ba924448719f5d2cfe7e05a5b1d0f45 (patch) | |
tree | 74e484ad257823dba68fdc2239ebb830d1cb924a /synapse/groups | |
parent | Disallow capital letters in userids (diff) | |
download | synapse-29812c628ba924448719f5d2cfe7e05a5b1d0f45.tar.xz |
Allow = in mxids and groupids
... because the spec says we should.
Diffstat (limited to 'synapse/groups')
-rw-r--r-- | synapse/groups/groups_server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/groups/groups_server.py b/synapse/groups/groups_server.py index c359bfa72b..3599bfe9cf 100644 --- a/synapse/groups/groups_server.py +++ b/synapse/groups/groups_server.py @@ -794,5 +794,5 @@ def _validate_group_id(group_id): if types.contains_invalid_mxid_characters(localpart): raise SynapseError( 400, - "Group ID can only contain characters a-z, 0-9, or '_-./'", + "Group ID can only contain characters a-z, 0-9, or '=_-./'", ) |