From f9e0420647280a5c05207d69c03f58c7f8e2e0be Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Mon, 31 Aug 2015 16:03:32 +0100 Subject: [PATCH] Fix http node method-override nls message id --- nodes/core/io/21-httpin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/core/io/21-httpin.js b/nodes/core/io/21-httpin.js index f9f13ecbd..c6a86a761 100644 --- a/nodes/core/io/21-httpin.js +++ b/nodes/core/io/21-httpin.js @@ -214,7 +214,7 @@ module.exports = function(RED) { var method = nodeMethod.toUpperCase() || "GET"; if (msg.method && n.method && (n.method !== "use")) { // warn if override option not set - node.warn(RED._("httpin.errors.not-overridden")); + node.warn(RED._("common.errors.nooverride")); } if (msg.method && n.method && (n.method === "use")) { method = msg.method.toUpperCase(); // use the msg parameter