Skip to content

Commit

Permalink
Do not log agent in UserAgent.
Browse files Browse the repository at this point in the history
Closes #60.
  • Loading branch information
flatheadmill committed May 25, 2015
1 parent 6dcd0d4 commit fba84c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http/ua.js
Expand Up @@ -107,7 +107,7 @@ UserAgent.prototype.fetch = cadence(function (step) {
request.options.headers.authorization = 'Bearer ' + request.token
}
for (var key in request.options) {
if (key == 'ca') {
if (key == 'ca' || key == 'agent') {
options[key] = true
} else {
options[key] = request.options[key]
Expand Down

0 comments on commit fba84c9

Please sign in to comment.