GdMediaHandler.php: fix init

This commit is contained in:
Zankaria 2025-03-25 23:50:22 +01:00
parent 82c06f923a
commit be43c419c1

View file

@ -143,6 +143,8 @@ class GdMediaHandler implements MediaHandler {
public function __construct(bool $strip_redraw, array $exif_readers, int $max_width, int $max_height) {
$this->strip_redraw = $strip_redraw;
$this->exif_readers = $exif_readers;
$this->image_max_width = $max_width;
$this->image_max_height = $max_height;
}
public function supportsMime(string $mime): bool {