Skip to content

Commit

Permalink
small fix: don't sync users of updated list before restoring users.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikedas committed May 22, 2018
1 parent ff45375 commit 6431db4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/Sympa/Request/Handler/update_automatic_list.pm
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ sub _twist {

## Create list object
my $listname = $list->{'name'};
unless ($list = Sympa::List->new($listname, $robot_id)) {
unless ($list =
Sympa::List->new($listname, $robot_id, {skip_sync_admin => 1})) {
$log->syslog('err', 'Unable to create list %s', $listname);
$self->add_stash($request, 'intern');
return undef;
Expand Down

0 comments on commit 6431db4

Please sign in to comment.