[backend/core] Correctly serialize http signature signing string for headers that occur more than once
This commit is contained in:
parent
a56e9b2922
commit
c0831c884b
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ public static class HttpSignature
|
|||
{
|
||||
"(request-target)" => $"{requestMethod.ToLowerInvariant()} {requestPath}",
|
||||
"host" => $"{host ?? requestHeaders[header]}",
|
||||
_ => requestHeaders[header]
|
||||
_ => string.Join(", ", requestHeaders[header].AsEnumerable())
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue