Fix the other type of keys

This commit is contained in:
Neil Alexander 2022-11-15 14:27:48 +00:00
parent ae6138eb3a
commit 27f4bd3f0e
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -198,8 +198,9 @@ func (h *httpFederationInternalAPI) QueryKeys(
return httputil.CallInternalProxyAPI[queryKeys, gomatrixserverlib.RespQueryKeys, *api.FederationClientError](
"QueryKeys", h.federationAPIURL+FederationAPIQueryKeysPath, h.httpClient,
ctx, &queryKeys{
S: s,
Keys: keys,
S: s,
Origin: origin,
Keys: keys,
},
)
}