Skip to content

Commit f0b29ea

Browse files
committed
Fix parsing of JSON RESTBuilder.
1 parent f1428ed commit f0b29ea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

builders.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3918,10 +3918,10 @@ RESTBuilder.prototype.exec = function(callback) {
39183918
output.value = F.onParseQuery(response);
39193919
break;
39203920
case 'application/json':
3921-
output.value = response.parseJSON();
3921+
output.value = response.parseJSON(true);
39223922
break;
39233923
default:
3924-
output.value = response.isJSON() ? response.parseJSON() : null;
3924+
output.value = response.isJSON() ? response.parseJSON(true) : null;
39253925
break;
39263926
}
39273927

0 commit comments

Comments
 (0)