From 5287703cce59e2ee09c73a851bfdcd018a67926c Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 24 Feb 2011 11:24:19 -0800 Subject: [PATCH] Pragma HTTP header comma separation Closes GH-715, GH-716. --- lib/http.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/http.js b/lib/http.js index af6a409..8313c8c 100644 --- a/lib/http.js +++ b/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 { -- 2.7.4