Skip to content

Commit

Permalink
Merge pull request #1053 from faust64/patch-1 by faust64
Browse files Browse the repository at this point in the history
Truncate searchkey_list with long subject field.
  • Loading branch information
ikedas authored Jan 30, 2021
2 parents 3392c83 + 739af93 commit 13af5d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Sympa/List.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6037,7 +6037,7 @@ sub _update_list_db {

my $name = $self->{'name'};
my $searchkey =
Sympa::Tools::Text::foldcase($self->{'admin'}{'subject'} || '');
substr( Sympa::Tools::Text::foldcase($self->{'admin'}{'subject'} || ''), 0, 255);
my $status = $self->{'admin'}{'status'};
my $robot = $self->{'domain'};

Expand Down

0 comments on commit 13af5d0

Please sign in to comment.