Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AppBuilder/core
Submodule core updated from cb3af4 to b1e098
10 changes: 10 additions & 0 deletions AppBuilder/platform/ABModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,16 @@ module.exports = class ABModel extends ABModelCore {
return;
}

// String Results
if (typeof data === "string") {
// if we have a string, then we are expecting a json object
try {
data = JSON.parse(data);
} catch (e) {
// if we can't parse the string, then just return it as is.
}
}

// let jobID = this.AB.jobID();
// console.log(`${jobID} : normalization begin`);
// let timeFrom = performance.now();
Expand Down
Loading