Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

Commit 7041430

Browse files
authored
Merge pull request #24 from Peetz0r/patch-2
Increase Mollie payment identifier length
2 parents c4679d2 + 08e4ecf commit 7041430

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/mollie

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ sub backend_call($hash) {
2424

2525
sub command($self, $cart, $command, @) {
2626
# currently 10 characters after the underscore, but it's not documented.
27-
my ($id) = $command =~ /^(tr_[A-Za-z0-9]{10,12})$/ or return NEXT;
27+
my ($id) = $command =~ /^(tr_[A-Za-z0-9]{10,32})$/ or return NEXT;
2828

2929
my $result = eval { backend_call { id => $id } };
3030
$@ and return REJECT, "API call failed: $@";

0 commit comments

Comments
 (0)