diff --git a/nodes/core/io/21-httpin.js b/nodes/core/io/21-httpin.js index fbe7f7aae..cf2a00de9 100644 --- a/nodes/core/io/21-httpin.js +++ b/nodes/core/io/21-httpin.js @@ -169,8 +169,10 @@ module.exports = function(RED) { opts.method = method; opts.headers = {}; if (msg.headers) { - for (var v = 0; v < msg.headers.length; v++) { - opts.headers[v.toLowerCase()] = msg.headers[v]; + for (var v in msg.headers) { + if (msg.headers.hasOwnProperty(v)) { + opts.headers[v.toLowerCase()] = msg.headers[v]; + } } } if (this.credentials && this.credentials.user) {