diff --git a/plugins/statiegeld b/plugins/statiegeld index 07b8ac2..bc2d709 100644 --- a/plugins/statiegeld +++ b/plugins/statiegeld @@ -1,5 +1,6 @@ #!perl use List::Util; +use RevBank::Products; our @addon_accounts = ("+statiegeld"); my $nope = "Sorry, no deposit on that product.\n"; @@ -9,8 +10,7 @@ our $S = ($ENV{REVBANK_STATIEGELD} // 0) == 1; sub statiegeld_product($product) { if (not ref $product) { # $product is a product id string; look up in product list - my $products = RevBank::Plugin::products::read_products(); - $product = $products->{$product} or return; + $product = read_products->{$product} or return; } # Called 'addons' here but also includes the queried product itself, diff --git a/plugins/statiegeld_tokens b/plugins/statiegeld_tokens index 53b009f..e882294 100644 --- a/plugins/statiegeld_tokens +++ b/plugins/statiegeld_tokens @@ -1,6 +1,6 @@ #!perl - use List::Util; +use RevBank::Products; HELP void => "Destroy deposit tokens"; @@ -220,7 +220,7 @@ sub hook_checkout_prepare($class, $cart, $username, $transaction_id, @) { $tokens_changed++; } for my $type (keys %warnings_by_type) { - my $products = RevBank::Plugin::products::read_products(); + my $products = read_products; my $addon = $products->{"+$type"} // $products->{$type}; my $avail = $had_num_tokens_by_type{$type} // 0; my $only =