We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9d1bec commit 8084aa9Copy full SHA for 8084aa9
app/code/Magento/Catalog/Pricing/Price/BasePrice.php
@@ -30,7 +30,7 @@ public function getValue()
30
$this->value = false;
31
foreach ($this->priceInfo->getPrices() as $price) {
32
if ($price instanceof BasePriceProviderInterface && $price->getValue() !== false) {
33
- $this->value = min($price->getValue(), $this->value ?: $price->getValue());
+ $this->value = min($price->getValue(), $this->value !== false ?: $price->getValue());
34
}
35
36
0 commit comments