Fix urlencoded path in federation client signature check
This commit is contained in:
parent
c5de486dba
commit
214293323c
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ defmodule MatrixServerWeb.FederationClient do
|
|||
|
||||
object_to_sign = %{
|
||||
method: "GET",
|
||||
uri: path,
|
||||
uri: URI.decode_www_form(path),
|
||||
origin: origin,
|
||||
destination: server_name
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue