Automatically closed - issue fixed for 2 weeks with no activity.
\Drupal\imagick\Plugin\ImageToolkit\ImagickToolkit::isValid()
currently returns TRUE as soon as there is a valid path to the file. The \Drupal\Core\ImageToolkit\ImageToolkitInterface::isValid()
interface says that the returned value should be "TRUE if the image toolkit is currently handling a valid image, FALSE otherwise".
This condition might be used by Core or contrib to test if an image is valid or not (see \Drupal\Core\Image\Image::isValid()
) so we have to be more restrictive on our implementation.
Follow Core and use $this->resource
like it's done in \Drupal\system\Plugin\ImageToolkit\GDToolkit::isValid()
Fixed
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.