Skip to content

Commit e7507e3

Browse files
committed
Fix uploadable normalizer for base64 uploaded files
1 parent 556687a commit e7507e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Serializer/Normalizer/UploadableNormalizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function denormalize($data, $type, $format = null, array $context = []):
107107
$context[self::ALREADY_CALLED] = true;
108108

109109
if (is_iterable($data)) {
110-
$this->findConfiguredFields($data, $type);
110+
$data = $this->findConfiguredFields($data, $type);
111111
}
112112

113113
return $this->denormalizer->denormalize($data, $type, $format, $context);

0 commit comments

Comments
 (0)