Don't repeat same description for statiegeld-only products

This commit is contained in:
Juerd Waalboer 2023-01-25 04:37:17 +01:00
parent 147bfe7045
commit 44d0cb9b69

View file

@ -62,7 +62,9 @@ sub command ($invocant, $cart, $command, @) {
my $addons = $sg->{statiegeld_addons};
for my $addon (@$addons) {
my $d = "$addon->{description} ($product->{description})";
my $d = $addon->{id} eq $product->{id}
? "$addon->{description}"
: "$addon->{description} ($product->{description})";
$cart
->add(+$addon->{price}, $d, { plugin => $invocant->id, addon_id => $addon->{id} })