diff --git a/src/Object/Image.php b/src/Object/Image.php index 00f8f3c5bb..d6c897e88d 100644 --- a/src/Object/Image.php +++ b/src/Object/Image.php @@ -196,7 +196,7 @@ class Image public function isValid(): bool { if ($this->isImagick()) { - return ($this->image !== false); + return !empty($this->image); } return $this->valid; }