We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 379c4f5 commit c026feeCopy full SHA for c026fee
src/main/java/io/frictionlessdata/tableschema/tabledatasource/TableDataSource.java
@@ -71,7 +71,7 @@ static TableDataSource fromSource(String input) {
71
try {
72
// JSON array generation. If an exception is thrown -> probably CSV data
73
ArrayNode json = JsonUtil.getInstance().createArrayNode(input);
74
- return new JsonArrayTableDataSource(input);
+ return new JsonArrayTableDataSource(json);
75
} catch (Exception ex) {
76
// JSON parsing failed, treat it as a CSV
77
return new CsvTableDataSource(input);
0 commit comments