diff options
author | Erik Johnston <erik@matrix.org> | 2017-10-19 10:27:18 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-10-19 10:27:18 +0100 |
commit | bd5718d0ad2a9380ae292507a1022a230f8b2011 (patch) | |
tree | 57a8122a2195f71ab3ecab479e7e4d07e36036fb | |
parent | Fix typo (diff) | |
download | synapse-bd5718d0ad2a9380ae292507a1022a230f8b2011.tar.xz |
Fix typo in thumbnail generation
-rw-r--r-- | synapse/rest/media/v1/media_repository.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/synapse/rest/media/v1/media_repository.py b/synapse/rest/media/v1/media_repository.py index 057c925b7b..6b50b45b1f 100644 --- a/synapse/rest/media/v1/media_repository.py +++ b/synapse/rest/media/v1/media_repository.py @@ -487,16 +487,19 @@ class MediaRepository(object): ) # Generate the thumbnail - if t_type == "crop": + if t_method == "crop": t_byte_source = yield make_deferred_yieldable(threads.deferToThread( thumbnailer.crop, t_width, t_height, t_type, )) - else: + elif t_method == "scale": t_byte_source = yield make_deferred_yieldable(threads.deferToThread( thumbnailer.scale, t_width, t_height, t_type, )) + else: + logger.error("Unrecognized method: %r", t_method) + continue if not t_byte_source: continue |