Skip to content

Commit

Permalink
chore: [#1315] Fixes problem with synd fetch headers
Browse files Browse the repository at this point in the history
  • Loading branch information
capricorn86 committed Mar 18, 2024
1 parent d43d2e2 commit 9e83ff9
Showing 1 changed file with 1 addition and 1 deletion.
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 9e83ff9

Please sign in to comment.