Skip to content

Commit

Permalink
Fix import with links in embedded collections of maps
Browse files Browse the repository at this point in the history
  • Loading branch information
luigidellaquila committed Mar 31, 2021
1 parent 193d354 commit e9d093d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected boolean convertSingleValue(final Object item, ResultCallback result, b
if (!newValue.equals(item)) updated = true;
} else {
final OValuesConverter valuesConverter =
OImportConvertersFactory.INSTANCE.getConverter(item.getClass(), converterData);
OImportConvertersFactory.INSTANCE.getConverter(item, converterData);
if (valuesConverter == null) result.add(item);
else {
final Object newValue = valuesConverter.convert(item);
Expand Down

0 comments on commit e9d093d

Please sign in to comment.