We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1428ed commit f0b29eaCopy full SHA for f0b29ea
1 file changed
builders.js
@@ -3918,10 +3918,10 @@ RESTBuilder.prototype.exec = function(callback) {
3918
output.value = F.onParseQuery(response);
3919
break;
3920
case 'application/json':
3921
- output.value = response.parseJSON();
+ output.value = response.parseJSON(true);
3922
3923
default:
3924
- output.value = response.isJSON() ? response.parseJSON() : null;
+ output.value = response.isJSON() ? response.parseJSON(true) : null;
3925
3926
}
3927
0 commit comments