Allow false and 0 in payload for httprequest (#1334)

This commit is contained in:
Patrik Åkerfeldt 2017-07-09 13:17:54 +02:00 committed by Nick O'Leary
parent b3ffd33507
commit d8a4e9e1ab
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ module.exports = function(RED) {
}
var payload = null;
if (msg.payload && (method == "POST" || method == "PUT" || method == "PATCH" ) ) {
if (typeof msg.payload !== "undefined" && (method == "POST" || method == "PUT" || method == "PATCH" ) ) {
if (typeof msg.payload === "string" || Buffer.isBuffer(msg.payload)) {
payload = msg.payload;
} else if (typeof msg.payload == "number") {