summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-23 11:39:38 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-23 11:39:38 +0000
commit48adc5b9cef29ef92c90e61f89ccc114c2045302 (patch)
treeea019a51ec76a1ef157dc7fb939b0cc6c13a88b8 /synapse
parentAllow monthly active user limiting support for worker mode, fixes #4639. (#6742) (diff)
parentFix and add test to deprecated quarantine media admin api (#6756) (diff)
downloadsynapse-48adc5b9cef29ef92c90e61f89ccc114c2045302.tar.xz
Fix and add test to deprecated quarantine media admin api (#6756)
* commit 'aa9b00fb2':
  Fix and add test to deprecated quarantine media admin api (#6756)
Diffstat (limited to 'synapse')
-rw-r--r--synapse/rest/admin/media.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/admin/media.py b/synapse/rest/admin/media.py

index 3a445d6eed..ee75095c0e 100644 --- a/synapse/rest/admin/media.py +++ b/synapse/rest/admin/media.py
@@ -36,7 +36,7 @@ class QuarantineMediaInRoom(RestServlet): historical_admin_path_patterns("/room/(?P<room_id>[^/]+)/media/quarantine") + # This path kept around for legacy reasons - historical_admin_path_patterns("/quarantine_media/(?P<room_id>![^/]+)") + historical_admin_path_patterns("/quarantine_media/(?P<room_id>[^/]+)") ) def __init__(self, hs):