Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Mar 26, 2024
1 parent 4e5414f commit 1687473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Traits/HasPrices.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ public function isFree(): bool
{
$price = $this->getPrice();

return is_null($price) || $price === 0;
return is_null($price) || $price === 0.0;
}
}

0 comments on commit 1687473

Please sign in to comment.