Skip to content

Commit

Permalink
fix: remove spaces between comma separated values in the cavage signa…
Browse files Browse the repository at this point in the history
…ture header
  • Loading branch information
dhensby committed Nov 28, 2023
1 parent ebe32d4 commit 5eb8494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cavage/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export async function signMessage<T extends Request | Response = Request | Respo
}),
`headers="${headerNames.join(' ')}"`,
`signature="${signature.toString('base64')}"`,
].join(', ');
].join(',');
return {
...message,
headers: {
Expand Down

0 comments on commit 5eb8494

Please sign in to comment.