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.
2 parents 377426e + 9e74299 commit 13de5d2Copy full SHA for 13de5d2
app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProvider.php
@@ -221,8 +221,8 @@ private function getSelectForSearchableProducts(
221
$lastProductId,
222
$batch
223
) {
224
- $websiteId = $this->storeManager->getStore($storeId)->getWebsiteId();
225
- $lastProductId = (int) $lastProductId;
+ $websiteId = (int)$this->storeManager->getStore($storeId)->getWebsiteId();
+ $lastProductId = (int)$lastProductId;
226
227
$select = $this->connection->select()
228
->useStraightJoin(true)
0 commit comments