diff --git a/files/helpers/media.py b/files/helpers/media.py index 54e2400fd..127341512 100644 --- a/files/helpers/media.py +++ b/files/helpers/media.py @@ -140,7 +140,7 @@ def process_image(filename:str, v, resize=0, trim=False, uploader_id:Optional[in try: with Image.open(filename) as i: - params = ["/usr/bin/convert", filename, "-coalesce", "-quality", "88"] + params = ["convert", filename, "-coalesce", "-quality", "88"] if trim and len(list(Iterator(i))) == 1: params.append("-trim") if resize and i.width > resize: