Skip to content

Commit 71cac38

Browse files
committed
fix csv load error
1 parent 6d90e5b commit 71cac38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/tabby/common/bean/converter/Map2JsonStringForAnnotationsConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ public Map<String, Map<String, Set<String>>> convertToEntityAttribute(String dbD
3333
return new HashMap<>();
3434
}
3535
Type objectType = new TypeToken<Map<String, Map<String, Set<String>>>>(){}.getType();
36-
return new ConcurrentHashMap<>(JsonUtils.fromJson(dbData, objectType));
36+
return new ConcurrentHashMap<>(JsonUtils.fromJsonWithReplace(dbData, objectType));
3737
}
3838
}

0 commit comments

Comments
 (0)