Skip to content

Commit 70b740d

Browse files
authored
Merge pull request #63 from BenjaminMedia/FORD-48-import-composites-by-source
BUGFIX: Added missing param to map_composites_by_brand_id_and_source call
2 parents a7ab52b + 0f58e21 commit 70b740d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/Composites.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ private function map_composites_by_brand_id_and_source($id, $source, callable $c
139139
$callable(CompositeRepository::find_by_id($compositeInfo->id));
140140
});
141141
if (isset($compositeQuery->pageInfo->hasNextPage) && $compositeQuery->pageInfo->hasNextPage)
142-
$compositeQuery = CompositeRepository::map_composites_by_brand_id_and_source($id, $categories->last()->cursor);
142+
$compositeQuery = CompositeRepository::map_composites_by_brand_id_and_source($id, $source, $categories->last()->cursor);
143143
else
144144
$compositeQuery = null;
145145
}

0 commit comments

Comments
 (0)