diff options
author | Will Hunt <will@half-shot.uk> | 2018-05-08 15:30:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-08 15:30:35 +0100 |
commit | f8b06fc0d622f8cfd6331f4e570b05bd65388282 (patch) | |
tree | 8a890f873e739551c422794f10388c9674b7d9a0 | |
parent | size > upload_size as per spec feedback (diff) | |
download | synapse-f8b06fc0d622f8cfd6331f4e570b05bd65388282.tar.xz |
Make MediaLimitsResource Leafy
-rw-r--r-- | synapse/rest/media/v1/limits_resource.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/media/v1/limits_resource.py b/synapse/rest/media/v1/limits_resource.py index 7f936d150d..64f41191ab 100644 --- a/synapse/rest/media/v1/limits_resource.py +++ b/synapse/rest/media/v1/limits_resource.py @@ -19,7 +19,7 @@ from synapse.http.server import respond_with_json, respond_with_json_bytes class MediaLimitsResource(Resource): - # isLeaf = True + isLeaf = True def __init__(self, hs): Resource.__init__(self) |