Skip to content

Commit

Permalink
Merge branch 'release/3.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsMemoICT committed Aug 28, 2024
2 parents 078a78e + 4c2781c commit d96ebf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ergonode/integration-shopware",
"description": "Shopware Ergonode Integration",
"version": "3.0.0",
"version": "3.0.1",
"type": "shopware-platform-plugin",
"license": "proprietary",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion src/Processor/Attribute/ManufacturerAttributeProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ private function removeLegacyManufacturers(array $processedIds, Context $context
);
$criteria->addFilter(new EqualsFilter('type', self::MAPPING_TYPE));
$existingIds = $this->mappingExtensionRepository->searchIds($criteria, $context);
$existingIds = array_map(fn($id) => ['id' => $id], $existingIds);
$existingIds = array_map(fn($id) => ['id' => $id], $existingIds->getIds());
if (empty($existingIds)) {
return;
}
Expand Down

0 comments on commit d96ebf0

Please sign in to comment.