We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48dc093 commit 6260ce5Copy full SHA for 6260ce5
app/code/Magento/CatalogSearch/Model/Search/FilterMapper/ExclusionStrategy.php
@@ -97,7 +97,10 @@ public function apply(
97
[
98
$alias => $tableName
99
],
100
- 'search_index.entity_id = category_ids_index.product_id',
+ $this->resourceConnection->getConnection()->quoteInto(
101
+ 'search_index.entity_id = category_ids_index.product_id AND category_ids_index.store_id = ?',
102
+ $this->storeManager->getStore()->getId()
103
+ ),
104
[]
105
);
106
$isApplied = true;
0 commit comments