From 609cde6ee122e7e4d817cf3cf9335c4ba7d42c3b Mon Sep 17 00:00:00 2001 From: Brian White Date: Thu, 31 Oct 2013 02:58:58 -0400 Subject: [PATCH] Parser: don't add quoted body to attributes after we streamed it --- lib/Parser.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Parser.js b/lib/Parser.js index 6870274..7a046e5 100644 --- a/lib/Parser.js +++ b/lib/Parser.js @@ -445,6 +445,7 @@ function parseFetch(text, literals, seqno) { }); body.push(val); body.push(null); + continue; } attrs[key] = val; }