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 8026848 commit 0566f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Koha/Plugin/Com/ByWaterSolutions/TwilioVoice.pm
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ sub before_send_messages {
my $parameters = {status => 'pending', message_transport_type => 'phone',};
$parameters->{borrowernumber} = $BorrowernumberFilter if $BorrowernumberFilter;

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

my $sent = {};
Expand Down

0 comments on commit 0566f44

Please sign in to comment.