set skipover true when adding to actionset

This commit is contained in:
Oliver Gorwits
2017-05-23 13:56:42 +01:00
parent 1086f2c467
commit 415559b24f

View File

@@ -49,7 +49,7 @@ sub add_to_actionset {
my ($row, @badactions) = @_;
return unless $row->in_storage;
return unless scalar @badactions;
return $row->update({ actionset =>
return $row->update({ skipover => \'true', actionset =>
[ sort (List::MoreUtils::uniq( @{ $row->actionset || [] }, @badactions )) ]
});
}