Open illepic opened 8 years ago
This will always be false: https://github.com/sarahg/drupal8-image-assist-migrate-plugin/blob/master/src/Plugin/migrate/process/NamaImgAssist.php#L57
count($pieces) == 8
Since $pieces is not defined.
$pieces
Correct. I solved it with adding before: $pieces = explode("|", $img_pieces);
Also, the first condition actually includes 9 items, so should be executed when count($pieces) == 9, and not 8.
This will always be false: https://github.com/sarahg/drupal8-image-assist-migrate-plugin/blob/master/src/Plugin/migrate/process/NamaImgAssist.php#L57
Since
$pieces
is not defined.