diff --git a/plugins/ImageEncoder/ImageEncoder.php b/plugins/ImageEncoder/ImageEncoder.php index 906ad86e65..505f3df604 100644 --- a/plugins/ImageEncoder/ImageEncoder.php +++ b/plugins/ImageEncoder/ImageEncoder.php @@ -34,17 +34,9 @@ class ImageEncoder extends Plugin { /** * Several obscure file types should be normalized to WebP on resize. - * - * Keeps only GIF (if animated) and WebP formats - * - * @return int */ public function preferredType(): int { - if ($this->type == IMAGETYPE_GIF && $this->animated) { - return $this->type; - } - return IMAGETYPE_WEBP; }