diff options
author | Travis Ralston <travpc@gmail.com> | 2019-09-03 09:01:30 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 09:01:30 -0600 |
commit | 0eac7077c9e6049a86c6fb05ab127ffc84cf7315 (patch) | |
tree | df8ec79fd4085c045b15cf1c8a48d5b687130ef2 | |
parent | fix typo (diff) | |
download | synapse-0eac7077c9e6049a86c6fb05ab127ffc84cf7315.tar.xz |
Ensure an auth instance is available to ListMediaInRoom (#5967)
* Ensure an auth instance is available to ListMediaInRoom Fixes https://github.com/matrix-org/synapse/issues/5737 * Changelog
-rw-r--r-- | changelog.d/5967.bugfix | 1 | ||||
-rw-r--r-- | synapse/rest/admin/media.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/changelog.d/5967.bugfix b/changelog.d/5967.bugfix new file mode 100644 index 0000000000..8d7bf5c2e9 --- /dev/null +++ b/changelog.d/5967.bugfix @@ -0,0 +1 @@ +Fix list media admin API always returning an error. diff --git a/synapse/rest/admin/media.py b/synapse/rest/admin/media.py index f3f63f0be7..ed7086d09c 100644 --- a/synapse/rest/admin/media.py +++ b/synapse/rest/admin/media.py @@ -60,6 +60,7 @@ class ListMediaInRoom(RestServlet): def __init__(self, hs): self.store = hs.get_datastore() + self.auth = hs.get_auth() @defer.inlineCallbacks def on_GET(self, request, room_id): |