0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-04 10:18:52 +02:00

Actually assign result to variable

This commit is contained in:
Erik Johnston 2017-09-28 13:55:29 +01:00
parent 93247a424a
commit e1e7d76cf1

View file

@ -372,7 +372,7 @@ class PreviewUrlResource(Resource):
# may have a room open with a preview url thing open).
# So we wait a couple of days before deleting, just in case.
expire_before = now - 2 * 24 * 60 * 60 * 1000
yield self.store.get_url_cache_media_before(expire_before)
media_ids = yield self.store.get_url_cache_media_before(expire_before)
removed_media = []
for media_id in media_ids: