Skip to content
This repository was archived by the owner on Nov 6, 2021. It is now read-only.

Commit 49e2079

Browse files
author
Florian Horn
committed
Fixed used value in fuzzyfyr observer updateData method
1 parent c6d6559 commit 49e2079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Observer/FuzzyfyrObserver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function updateData(
6868
) {
6969
if (!$configuration->isUseOnlyEmpty() ||
7070
($configuration->isUseOnlyEmpty() && empty($entity->getData($fieldName)))) {
71-
$entity->setData($fieldName, $configuration->getDummyContentText());
71+
$entity->setData($fieldName, $value);
7272
}
7373
}
7474
}

0 commit comments

Comments
 (0)