- Issue created by @ibullock
- 🇵🇱Poland paladyn
I have the same issue and I manage to solve it by changing one line of code in "src/Plugin/media/Source/Asset.php" - line 283.
return $this->getRemoteThumbnailUri($external_id) ?: $asset['thumbnails']['600px']['url'];
to
return $asset['thumbnails']['600px']['url'] ?: $this->getRemoteThumbnailUri($external_id);
For me
$asset['thumbnails']['600px']['url']
- has right preview path and$this->getRemoteThumbnailUri($external_id);
generates wrong one.I was not digging further into it, but I hope it will help someone to fix the source of issue.