From edca797fe5e4d5618f9bd472b2b17bad00ffc122 Mon Sep 17 00:00:00 2001 From: Wouter Date: Sun, 12 May 2019 15:33:03 +0200 Subject: [PATCH] Add deposit method to card metadata --- plugins/deposit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/deposit b/plugins/deposit index 2682fa8..eda794d 100755 --- a/plugins/deposit +++ b/plugins/deposit @@ -47,7 +47,7 @@ sub how :Tab(&how_tab) { return shift @{ $how->{prompts} }, \&how_prompt; } - $cart->add(undef, +$self->{amount}, $how->{description}, { is_deposit => 1 }); + $cart->add(undef, +$self->{amount}, $how->{description}, { is_deposit => 1, method => $input }); return ACCEPT; }