You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the plug-in prepends all image url with the site URL in the image_to_read variable, thus making those that come from S3 invalid.
Changing $image_to_read = $siteUrl . $image->url;
to $image_to_read = $image->url;
in ImageColorService.php, works just fine with S3 assets.
The text was updated successfully, but these errors were encountered:
It seems that the plug-in prepends all image url with the site URL in the
image_to_read
variable, thus making those that come from S3 invalid.Changing
$image_to_read = $siteUrl . $image->url;
to
$image_to_read = $image->url;
in ImageColorService.php, works just fine with S3 assets.
The text was updated successfully, but these errors were encountered: