Skip to content

Commit

Permalink
fix the integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
schauder committed Jul 5, 2024
1 parent d326ca1 commit 38d2e6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ public Object writeValue(@Nullable Object value, TypeInformation<?> type) {

Optional<Class<?>> customWriteTarget = getConversions().getCustomWriteTarget(type.getType());
if (customWriteTarget.isPresent()) {
return getConversionService().convert(value, customWriteTarget.get());
return getPotentiallyConvertedSimpleWrite(getConversionService().convert(value, customWriteTarget.get()));
}

if (TypeInformation.OBJECT != type) {
Expand Down

0 comments on commit 38d2e6b

Please sign in to comment.