From a450aa7468ecccbba10fc35e0f5239c15126452c Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Wed, 25 Dec 2024 23:50:03 +0100 Subject: [PATCH] Use read_products in new namespace (Would also work without this change, but indirectly through the products plugin which imports this symbol) --- plugins/statiegeld | 4 ++-- plugins/statiegeld_tokens | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 =