From 16afac851a5a82b6e42bca9f9ebdb93a2f1ba0ff Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Mon, 6 Jan 2025 23:41:07 +0100 Subject: [PATCH] Default tag_price to 0.00 instead of 0 --- lib/RevBank/Products.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/RevBank/Products.pm b/lib/RevBank/Products.pm index 3eddb9b..48abf6d 100644 --- a/lib/RevBank/Products.pm +++ b/lib/RevBank/Products.pm @@ -154,7 +154,7 @@ sub read_products($filename = "revbank.products", $default_contra = "+sales/prod next if $id =~ /^\+/; my $product = $products{$id}; - my $tag_price = $product->{price} || 0; + my $tag_price = $product->{price} || RevBank::Amount->new(0); my $hidden = 0; my @seen = ($product);