1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Do not include payload in GET requests

Fixes #1598

This regression was caused by #1531 - allowing the http request node
use any method.

The full fix is to identify which common verbs must not include a payload
and exclude them. GET needs fixing right now.
This commit is contained in:
Nick O'Leary 2018-01-31 23:39:26 +00:00
parent 3d8d6953ec
commit 3ec35ed119
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -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") {