Skip to content

Commit

Permalink
Revert "JSON-serialize original request parameter"
Browse files Browse the repository at this point in the history
This reverts commit 468b96e.
  • Loading branch information
atesgoral committed Aug 7, 2015
1 parent 00f3920 commit ca4e6b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demock.js
Expand Up @@ -76,7 +76,7 @@
request.headers = request.headers || {};

for (var paramName in request.params) {
request.headers['X-Request-Param-' + paramName] = JSON.stringify(request.params[paramName]);
request.headers['X-Request-Param-' + paramName] = request.params[paramName];
}
}
};
Expand Down

0 comments on commit ca4e6b7

Please sign in to comment.