forked from AkkomaGang/akkoma
Fix signing bug.
This commit is contained in:
parent
f61fd00db5
commit
5ea6d96dbe
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ def call(conn, opts) do
|
|||
Logger.debug("Checking sig for #{user}")
|
||||
if get_req_header(conn, "signature") do
|
||||
conn = conn
|
||||
|> put_req_header("(request-target)", String.downcase("#{conn.method} #{conn.request_path}"))
|
||||
|> put_req_header("(request-target)", String.downcase("#{conn.method}") <> " #{conn.request_path}")
|
||||
|
||||
assign(conn, :valid_signature, HTTPSignatures.validate_conn(conn))
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue