Revert change to http until we fully deprecate msg/node priorities

Fix to close #582
This commit is contained in:
dceejay 2015-03-08 18:36:35 +00:00
parent 9c46feb22b
commit 4403a00651
1 changed files with 4 additions and 4 deletions

View File

@ -251,7 +251,7 @@ module.exports = function(RED) {
msg.statusCode = res.statusCode;
msg.headers = res.headers;
msg.payload = "";
msg.url = url;
// msg.url = url; // revert when fully deprecated
res.on('data',function(chunk) {
msg.payload += chunk;
});