diff --git a/nodes/core/io/21-httprequest.js b/nodes/core/io/21-httprequest.js index 1a3707344..52cef215a 100644 --- a/nodes/core/io/21-httprequest.js +++ b/nodes/core/io/21-httprequest.js @@ -135,7 +135,7 @@ module.exports = function(RED) { } var payload = null; - if (typeof msg.payload !== "undefined") { + if (method !== 'GET' && typeof msg.payload !== "undefined") { if (typeof msg.payload === "string" || Buffer.isBuffer(msg.payload)) { payload = msg.payload; } else if (typeof msg.payload == "number") {