Browse Source

Pragma HTTP header comma separation

Closes GH-715, GH-716.
v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
5287703cce
  1. 1
      lib/http.js

1
lib/http.js

@ -261,6 +261,7 @@ IncomingMessage.prototype._addHeaderLine = function(field, value) {
case 'accept-language':
case 'connection':
case 'cookie':
case 'pragma':
if (field in dest) {
dest[field] += ', ' + value;
} else {

Loading…
Cancel
Save