Skip to content

Commit

Permalink
bugfix for GetParam
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-vinitha committed Mar 3, 2024
1 parent 7d5250e commit e52e204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Param.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Param.prototype.get = function(callback) {
});

paramClient.callService(request, function(result) {
var value = JSON.stringify(result.value);
var value = JSON.parse(result.value);
callback(value);
});
};
Expand Down

0 comments on commit e52e204

Please sign in to comment.