HTTP In delete configuration missing errorHandler

Fixes #384
This commit is contained in:
Nick O'Leary 2014-09-05 13:19:05 +01:00
parent 293725afcd
commit 56768fbf2c
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ module.exports = function(RED) {
} else if (this.method == "put") {
RED.httpNode.put(this.url,corsHandler,jsonParser,urlencParser,rawBodyParser,this.callback,this.errorHandler);
} else if (this.method == "delete") {
RED.httpNode.delete(this.url,corsHandler,this.callback,errorHandler);
RED.httpNode.delete(this.url,corsHandler,this.callback,this.errorHandler);
}
this.on("close",function() {