Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yapro committed Sep 8, 2023
1 parent 3be19c2 commit 1c01f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Processor/RenameContextProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function __invoke(array $record): array
{
if (isset($record['context'])) {
$record[$this->destinationFieldName] = $record['context'];
unset($record[$this->destinationFieldName]);
unset($record['context']);
}

return $record;
Expand Down

0 comments on commit 1c01f51

Please sign in to comment.