fix thumbnailing (#2548)

in commit 0e28281a the code for thumbnailing got refactored and the
renaming of this variables was not done correctly.

Signed-Off-by: Matthias Kesler <krombel@krombel.de>
This commit is contained in:
Krombel 2017-10-17 12:45:33 +02:00
parent e0a75e0c25
commit a6245478c8

View File

@ -490,12 +490,12 @@ class MediaRepository(object):
if t_type == "crop":
t_byte_source = yield make_deferred_yieldable(threads.deferToThread(
thumbnailer.crop,
r_width, r_height, t_type,
t_width, t_height, t_type,
))
else:
t_byte_source = yield make_deferred_yieldable(threads.deferToThread(
thumbnailer.scale,
r_width, r_height, t_type,
t_width, t_height, t_type,
))
if not t_byte_source: