summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-10-22 13:19:06 +0100
committerGitHub <noreply@github.com>2020-10-22 13:19:06 +0100
commitb19b63e6b4c0c654226c066999bd82c54952920c (patch)
treee3f1d3bc9d07eb527848819280bd36d863c5df18 /synapse/handlers
parentType hints for RegistrationStore (#8615) (diff)
downloadsynapse-b19b63e6b4c0c654226c066999bd82c54952920c.tar.xz
Don't 500 for invalid group IDs (#8628)
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/groups_local.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/handlers/groups_local.py b/synapse/handlers/groups_local.py
index 9684e60fc8..b2def93bb1 100644
--- a/synapse/handlers/groups_local.py
+++ b/synapse/handlers/groups_local.py
@@ -17,7 +17,7 @@
 import logging
 
 from synapse.api.errors import HttpResponseException, RequestSendFailed, SynapseError
-from synapse.types import get_domain_from_id
+from synapse.types import GroupID, get_domain_from_id
 
 logger = logging.getLogger(__name__)
 
@@ -28,6 +28,9 @@ def _create_rerouter(func_name):
     """
 
     async def f(self, group_id, *args, **kwargs):
+        if not GroupID.is_valid(group_id):
+            raise SynapseError(400, "%s was not legal group ID" % (group_id,))
+
         if self.is_mine_id(group_id):
             return await getattr(self.groups_server_handler, func_name)(
                 group_id, *args, **kwargs