Skip to content

Commit

Permalink
fix: fixed null refiner
Browse files Browse the repository at this point in the history
  • Loading branch information
ugoliniriccardo committed Aug 22, 2022
1 parent 88dd1b6 commit 73d80c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Refiner/Json/FixedNullValueRefiner.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function execute(int $activityId, string $refinerType, string $entityIden
$data = $entity->getDataRefined();
$data = $this->serializer->unserialize($data);

$data[$identifiers] = null;
$this->dotConvention->setValue($data, $identifiers, null);

$data = $this->serializer->serialize($data);
$entity->setDataRefined($data);
Expand Down

0 comments on commit 73d80c4

Please sign in to comment.