Skip to content

Commit

Permalink
Merge pull request #1326 from capricorn86/1315-implement-the-getsetco…
Browse files Browse the repository at this point in the history
…okie-method-of-headers

chore: [#1315] Fixes problem with synd fetch headers
  • Loading branch information
capricorn86 committed Mar 18, 2024
2 parents d43d2e2 + 9e83ff9 commit 06a558f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default class FetchRequestHeaderUtility {
const httpRequestHeaders = {};

for (const header of Object.values(headers[PropertySymbol.entries])) {
httpRequestHeaders[header.name] = header.value;
httpRequestHeaders[header.name] = header.value.join(', ');
}

return httpRequestHeaders;
Expand Down

0 comments on commit 06a558f

Please sign in to comment.