Skip to content

Commit cfae994

Browse files
committed
fix for static test failure
1 parent 5b59ad3 commit cfae994

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Review/Model/ResourceModel/Rating/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public function setStoreFilter($storeId)
127127
if (!is_array($storeId)) {
128128
$storeId = [$storeId === null ? -1 : $storeId];
129129
}
130-
if (empty($storeId)) {
130+
if ($storeId == 0) {
131131
return $this;
132132
}
133133
if (!$this->_isStoreJoined) {

0 commit comments

Comments
 (0)