Skip to content

Commit

Permalink
Merge branch 'master' into 1591-prevent-reload
Browse files Browse the repository at this point in the history
  • Loading branch information
shakyShane committed Oct 6, 2018
2 parents 11729cc + abc0124 commit d4c58b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/browser-sync/lib/server/proxy-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function rewriteCookies(rawCookie) {

var pairs = Object.keys(objCookie)
.filter(function(item) {
return item !== "domain";
return item.toLowerCase() !== "domain";
})
.map(function(key) {
return key + "=" + objCookie[key];
Expand Down

0 comments on commit d4c58b8

Please sign in to comment.