diff --git a/files/helpers/images.py b/files/helpers/images.py index f0b68998e..3c43fd206 100644 --- a/files/helpers/images.py +++ b/files/helpers/images.py @@ -23,7 +23,7 @@ def upload_ibb(file=None, resize=False): def thumbnails(frames): for frame in frames: thumbnail = frame.copy() - thumbnail.thumbnail(size, IImage.ANTIALIAS) + thumbnail.thumbnail(size) yield thumbnail frames = thumbnails(frames)