-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrey Litvinovich
committed
Jun 3, 2019
1 parent
8f48255
commit ced38bc
Showing
9 changed files
with
786 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
diff --git a/node_modules/spdy-transport/lib/spdy-transport/protocol/base/utils.js b/node_modules/spdy-transport/lib/spdy-transport/protocol/base/utils.js | ||
index 72a380f..042199e 100644 | ||
--- a/node_modules/spdy-transport/lib/spdy-transport/protocol/base/utils.js | ||
+++ b/node_modules/spdy-transport/lib/spdy-transport/protocol/base/utils.js | ||
@@ -45,13 +45,13 @@ exports.addHeaderLine = function addHeaderLine (field, value, dest) { | ||
|
||
switch (field) { | ||
// Array headers: | ||
- case 'set-cookie': | ||
- if (dest[field] !== undefined) { | ||
- dest[field].push(value) | ||
- } else { | ||
- dest[field] = [ value ] | ||
- } | ||
- break | ||
+ // case 'set-cookie': | ||
+ // if (dest[field] !== undefined) { | ||
+ // dest[field].push(value) | ||
+ // } else { | ||
+ // dest[field] = [ value ] | ||
+ // } | ||
+ // break | ||
|
||
/* eslint-disable max-len */ | ||
// list is taken from: | ||
@@ -74,6 +74,7 @@ exports.addHeaderLine = function addHeaderLine (field, value, dest) { | ||
} | ||
break | ||
|
||
+ case 'set-cookie': | ||
case 'cookie': | ||
// make semicolon-separated list | ||
if (dest[field] !== undefined) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.