Skip to content

Commit 550daa7

Browse files
committed
Fix price range
1 parent eb87857 commit 550daa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/QueryBuilder/HasPriceBetweenQueryBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function buildQuery(array $data): ?AbstractQuery
6868

6969
$rangeQuery->setParam($propertyName, [
7070
'gte' => $minPrice,
71-
'lt' => $maxPrice,
71+
'lte' => $maxPrice,
7272
]);
7373

7474
return $rangeQuery;

0 commit comments

Comments
 (0)