0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-18 06:19:24 +02:00

Merge pull request #1945 from jkolo/fix_dynamic_thumbnails_aspect

Fix #1677 (dynamic thumbnails aspect)
This commit is contained in:
Erik Johnston 2017-02-27 09:51:52 +00:00 committed by GitHub
commit acf6d4d2e3

View file

@ -240,6 +240,9 @@ class MediaRepository(object):
if t_method == "crop":
t_len = thumbnailer.crop(t_path, t_width, t_height, t_type)
elif t_method == "scale":
t_width, t_height = thumbnailer.aspect(t_width, t_height)
t_width = min(m_width, t_width)
t_height = min(m_height, t_height)
t_len = thumbnailer.scale(t_path, t_width, t_height, t_type)
else:
t_len = None