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
This commit is contained in:
Travis Ralston 2019-09-03 09:01:30 -06:00 committed by GitHub
parent 8401bcd206
commit 0eac7077c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
changelog.d/5967.bugfix Normal file
View File

@ -0,0 +1 @@
Fix list media admin API always returning an error.

View File

@ -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):