Skip to content

Commit

Permalink
Fix error in letter code limit
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemhall committed May 4, 2023
1 parent 0566f44 commit 860e82f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Koha/Plugin/Com/ByWaterSolutions/TwilioVoice.pm
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ sub before_send_messages {

my $parameters = {status => 'pending', message_transport_type => 'phone',};
$parameters->{borrowernumber} = $BorrowernumberFilter if $BorrowernumberFilter;

$parameterss->{letter_code} = $letter_code if $letter_code;
$parameters->{letter_code} = $letter_code if $letter_code;
my $messages = Koha::Notice::Messages->search($parameters);

my $sent = {};
Expand Down

0 comments on commit 860e82f

Please sign in to comment.