doofinder / doofinder-magento2

Open Software License 3.0
10 stars 8 forks source link

Missing database table prefix #296

Closed micheledalonzo closed 5 months ago

micheledalonzo commented 8 months ago

On module Model/ProductRepository.php there is a select not using database table prefix

$categoryPaths = $connection->fetchCol( $connection->select() ->from('catalog_category_entity', ['path']) ->where('entity_id IN (?)', array_keys($categoryIds)) );