Skip to content

Commit

Permalink
[FIX] Bolfeed image mapping issue
Browse files Browse the repository at this point in the history
Co-Authored-By: Vincent van Hoven <11269255+vincentvanhoven@users.noreply.github.com>
  • Loading branch information
Vincent van Hoven and vincentvanhoven committed Jul 24, 2024
1 parent 05fa3d7 commit 65b323a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jobs/Feeds/BolFeed.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ protected function getProductQuery(): Builder
protected function productToFeedRow(Product $product)
{
// fetch images
$images = implode(',', $product->images()->map->getPublicUrl()->all());
$images = implode(',', $product->images->map->getPublicUrl()->all());

// set bol price
$shippingCost = 0;
Expand Down

0 comments on commit 65b323a

Please sign in to comment.